.zcs-widget {
	--zcs-bg: #f7f3eb;
	--zcs-surface: #ffffff;
	--zcs-ink: #1f2a24;
	--zcs-muted: #5f6b64;
	--zcs-line: #d9d0c3;
	--zcs-accent: #0f6b4c;
	--zcs-accent-dark: #0a4f39;
	--zcs-accent-soft: #e4f3ec;
	--zcs-shadow: 0 18px 40px rgba(31, 42, 36, 0.08);
	--zcs-radius: 18px;
	font-family: "IranSans-D4-FN", "IRANSansWeb", Tahoma, sans-serif;
	color: var(--zcs-ink);
	max-width: 820px;
	margin: 0 auto;
	padding: 28px 20px 36px;
	background:
		radial-gradient(circle at top right, rgba(15, 107, 76, 0.08), transparent 42%),
		linear-gradient(180deg, #fbf8f2 0%, var(--zcs-bg) 100%);
	border: 1px solid rgba(217, 208, 195, 0.8);
	border-radius: calc(var(--zcs-radius) + 6px);
	box-shadow: var(--zcs-shadow);
	box-sizing: border-box;
	position: relative;
	z-index: 20;
	isolation: isolate;
}

.zcs-widget *,
.zcs-widget *::before,
.zcs-widget *::after {
	box-sizing: border-box;
}

/* Old babakhani leftovers */
.datepicker-container.pwt-hide {
	display: none !important;
	pointer-events: none !important;
}

/* Neutralize Hello Elementor global button / link hover styles */
.zcs-widget .zcs-tab,
.zcs-widget .zcs-btn,
.zcs-widget .zcs-back,
.zcs-widget [data-start-btn],
.zcs-widget [data-submit-btn],
.zcs-widget [data-docs-advance-btn],
.zcs-widget [data-reset-btn],
.zcs-widget [data-back-btn] {
	width: 100%;
	display: inline-flex;
	font-weight: 700;
	color: inherit;
	text-align: center;
	white-space: normal;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 12px 18px;
	font-size: 1rem;
	border-radius: 14px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.zcs-widget .zcs-tab:hover,
.zcs-widget .zcs-tab:focus,
.zcs-widget .zcs-btn:hover,
.zcs-widget .zcs-btn:focus,
.zcs-widget .zcs-back:hover,
.zcs-widget .zcs-back:focus {
	color: inherit;
	background-color: transparent;
	text-decoration: none;
	outline: none;
	box-shadow: none;
}

.zcs-widget a,
.zcs-widget a:hover,
.zcs-widget a:focus,
.zcs-widget a:active {
	color: inherit;
	text-decoration: none;
	background: transparent;
}

.zcs-title {
	margin: 0 0 22px;
	font-size: clamp(1.25rem, 2.4vw, 1.7rem);
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: var(--zcs-ink);
}

.zcs-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 22px;
	position: relative;
	z-index: 30;
	pointer-events: auto;
}

.zcs-widget .zcs-tab {
	appearance: none;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100%;
	min-height: 52px;
	border: 1px solid var(--zcs-line) !important;
	background: var(--zcs-surface) !important;
	color: var(--zcs-ink) !important;
	border-radius: 14px !important;
	padding: 14px 10px !important;
	font: inherit;
	font-size: 0.92rem !important;
	font-weight: 600 !important;
	text-align: center !important;
	line-height: 1.4 !important;
	white-space: normal !important;
	cursor: pointer !important;
	pointer-events: auto !important;
	position: relative;
	z-index: 31;
	user-select: none;
	-webkit-user-select: none;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.zcs-widget .zcs-tab__label {
	pointer-events: none;
	display: block;
	text-align: center;
}

.zcs-widget .zcs-tab:hover,
.zcs-widget .zcs-tab:focus {
	border-color: var(--zcs-accent) !important;
	background: var(--zcs-surface) !important;
	color: var(--zcs-ink) !important;
	transform: translateY(-1px);
}

.zcs-widget .zcs-tab.is-active,
.zcs-widget .zcs-tab.is-active:hover,
.zcs-widget .zcs-tab.is-active:focus {
	background: var(--zcs-accent) !important;
	border-color: var(--zcs-accent) !important;
	color: #fff !important;
}

.zcs-summary {
	background: var(--zcs-surface);
	border: 1px solid var(--zcs-line);
	border-radius: var(--zcs-radius);
	padding: 18px 18px 8px;
	margin-bottom: 22px;
}

.zcs-summary__heading {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 700;
	text-align: center;
}

.zcs-summary__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.zcs-summary__list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 4px;
	border-top: 1px dashed var(--zcs-line);
	font-size: 0.95rem;
}

.zcs-summary__list li:first-child {
	border-top: 0;
}

.zcs-summary__list span {
	color: var(--zcs-muted);
}

.zcs-summary__list strong {
	font-weight: 700;
	color: var(--zcs-ink);
	text-align: left;
	white-space: nowrap;
}

.zcs-widget .zcs-btn {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 12px 18px !important;
	border-radius: 14px !important;
	border: 1px solid transparent !important;
	font: inherit;
	font-size: 1rem !important;
	font-weight: 700 !important;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.zcs-widget .zcs-btn--primary {
	background: var(--zcs-accent) !important;
	border-color: var(--zcs-accent) !important;
	color: #fff !important;
}

.zcs-widget .zcs-btn--primary:hover,
.zcs-widget .zcs-btn--primary:focus {
	background: var(--zcs-accent-dark) !important;
	border-color: var(--zcs-accent-dark) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.zcs-widget .zcs-btn--primary:disabled,
.zcs-widget .zcs-btn--primary:disabled:hover {
	opacity: 0.65;
	cursor: wait;
	transform: none;
	background: var(--zcs-accent) !important;
	color: #fff !important;
}

.zcs-widget .zcs-btn--ghost {
	background: transparent !important;
	border-color: var(--zcs-line) !important;
	color: var(--zcs-ink) !important;
}

.zcs-widget .zcs-btn--ghost:hover,
.zcs-widget .zcs-btn--ghost:focus {
	background: var(--zcs-accent-soft) !important;
	border-color: var(--zcs-accent) !important;
	color: var(--zcs-accent-dark) !important;
}

.zcs-widget .zcs-back {
	appearance: none;
	width: auto !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--zcs-accent) !important;
	font: inherit;
	font-weight: 600 !important;
	cursor: pointer;
	margin-bottom: 12px;
	padding: 0 !important;
	min-height: 0;
}

.zcs-widget .zcs-back:hover,
.zcs-widget .zcs-back:focus {
	background: transparent !important;
	color: var(--zcs-accent-dark) !important;
	text-decoration: underline;
}

.zcs-form-lead {
	margin: -8px 0 18px;
	text-align: center;
	color: var(--zcs-muted);
}

.zcs-mobile-mask {
	display: inline-block;
	direction: ltr;
	unicode-bidi: isolate;
	font-weight: 800;
	color: var(--zcs-ink);
	letter-spacing: 0.02em;
	margin: 0 0.2em;
	font-variant-numeric: tabular-nums;
}

.zcs-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 16px;
}

.zcs-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.zcs-field--full {
	grid-column: 1 / -1;
}

.zcs-field span {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--zcs-muted);
}

.zcs-field input {
	width: 100%;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--zcs-line);
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: var(--zcs-ink);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.zcs-field input:focus {
	border-color: var(--zcs-accent);
	box-shadow: 0 0 0 3px var(--zcs-accent-soft);
}

.zcs-field-hint {
	font-size: 0.8rem;
	color: var(--zcs-muted);
}

.zcs-widget input.zcs-birth-date,
.zcs-widget [data-jalali-datepicker="1"] {
	cursor: pointer !important;
}

/* Contracts jalali datepicker icon must not inherit full-width button styles */
.zcs-widget .cwm-jalali-input-wrap {
	position: relative;
	display: block;
	width: 100%;
}

.zcs-widget .cwm-jalali-input-wrap > button {
	width: auto !important;
	min-width: 0 !important;
	height: auto !important;
	padding: 2px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: none !important;
	box-shadow: none !important;
	transform: translateY(-50%) !important;
}

.zcs-otp {
	max-width: 420px;
	margin: 0 auto;
}

.zcs-otp__digits {
	display: flex;
	justify-content: center;
	gap: 8px;
	direction: ltr;
	margin: 8px 0 18px;
}

.zcs-widget .zcs-otp__digit {
	width: 46px !important;
	min-width: 46px !important;
	height: 52px !important;
	text-align: center !important;
	font-size: 1.25rem !important;
	font-weight: 700 !important;
	border: 1px solid var(--zcs-line) !important;
	border-radius: 12px !important;
	background: #fff !important;
	color: var(--zcs-ink) !important;
	padding: 0 !important;
}

.zcs-widget .zcs-otp__digit:focus {
	border-color: var(--zcs-accent) !important;
	box-shadow: 0 0 0 3px var(--zcs-accent-soft) !important;
	outline: none;
}

.zcs-otp__resend {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.zcs-widget .zcs-otp__resend-btn {
	width: auto !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--zcs-accent) !important;
	font-size: 0.92rem !important;
	font-weight: 700 !important;
	padding: 6px 4px !important;
}

.zcs-widget .zcs-otp__resend-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed !important;
	color: var(--zcs-muted) !important;
}

.zcs-otp__countdown {
	color: var(--zcs-muted);
	font-size: 0.88rem;
}

.zcs-form__message {
	margin: 0 0 14px;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 0.92rem;
}

.zcs-form__message.is-error {
	background: #fdeceb;
	color: #8a1f17;
}

.zcs-form__message.is-success {
	background: var(--zcs-accent-soft);
	color: var(--zcs-accent-dark);
}

.zcs-status {
	text-align: right;
	padding: 4px 0 0;
	display: grid;
	gap: 14px;
	justify-items: stretch;
	width: 100%;
	animation: zcs-rise 0.45s ease both;
}

@keyframes zcs-rise {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.zcs-status__hero {
	position: relative;
	overflow: hidden;
	padding: 20px 20px 18px;
	border-radius: 18px;
	border: 1px solid rgba(15, 107, 76, 0.12);
	background:
		radial-gradient(circle at 100% 0%, rgba(15, 107, 76, 0.12), transparent 48%),
		linear-gradient(165deg, #ffffff 0%, #f5faf7 100%);
	box-shadow: 0 10px 28px rgba(31, 42, 36, 0.06);
	display: grid;
	gap: 10px;
	justify-items: stretch;
}

.zcs-status__hero::after {
	content: "";
	position: absolute;
	inset: auto -18% -45% auto;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(15, 107, 76, 0.05);
	pointer-events: none;
}

.zcs-status__top {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px 14px;
	position: relative;
	z-index: 1;
}

.zcs-status__eyebrow {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--zcs-accent);
	order: 2;
}

.zcs-status__title {
	margin: 0;
	font-size: clamp(1.15rem, 2.2vw, 1.4rem) !important;
	text-align: right !important;
	flex: 1 1 auto;
	order: 1;
	position: relative;
	z-index: 1;
}

.zcs-status__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	position: relative;
	z-index: 1;
}

.zcs-status__meta {
	margin: 0;
	color: var(--zcs-muted);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.5;
}

.zcs-status__meta[hidden] {
	display: none !important;
}

.zcs-status__meta:not([hidden])::after {
	content: "";
	display: none;
}

.zcs-status__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 800;
	background: var(--zcs-accent-soft);
	color: var(--zcs-accent-dark);
	border: 1px solid rgba(15, 107, 76, 0.16);
	white-space: nowrap;
	animation: zcs-badge-in 0.45s ease 0.08s both;
}

.zcs-status__badge::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 3px rgba(15, 107, 76, 0.12);
	animation: zcs-pulse 1.8s ease infinite;
	flex-shrink: 0;
}

@keyframes zcs-badge-in {
	from {
		opacity: 0;
		transform: scale(0.94);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes zcs-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(15, 107, 76, 0.1);
	}
	50% {
		box-shadow: 0 0 0 6px rgba(15, 107, 76, 0.04);
	}
}

.zcs-status__badge.is-pending,
.zcs-status__badge.is-warn {
	background: #fff7e8;
	color: #8a5a12;
	border-color: rgba(138, 90, 18, 0.2);
}

.zcs-status__badge.is-pending::before,
.zcs-status__badge.is-warn::before {
	box-shadow: 0 0 0 3px rgba(138, 90, 18, 0.12);
}

.zcs-status__badge.is-info {
	background: #eef4ff;
	color: #1d4f91;
	border-color: rgba(29, 79, 145, 0.2);
}

.zcs-status__badge.is-info::before {
	box-shadow: 0 0 0 3px rgba(29, 79, 145, 0.12);
}

.zcs-status__badge.is-ok {
	background: var(--zcs-accent-soft);
	color: var(--zcs-accent-dark);
	border-color: rgba(15, 107, 76, 0.18);
}

.zcs-status__badge.is-bad {
	background: #fdeceb;
	color: #8a1f17;
	border-color: rgba(138, 31, 23, 0.2);
}

.zcs-status__badge.is-bad::before {
	animation: none;
	box-shadow: none;
}

.zcs-status__message {
	margin: 0;
	padding-top: 2px;
	color: var(--zcs-ink);
	line-height: 1.75;
	font-size: 0.95rem;
	max-width: none;
	position: relative;
	z-index: 1;
	opacity: 0.92;
}

.zcs-status__return {
	margin-top: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(180, 83, 9, 0.28);
	background: rgba(180, 83, 9, 0.08);
	position: relative;
	z-index: 1;
}

.zcs-status__return strong {
	display: block;
	margin-bottom: 4px;
	color: #92400e;
	font-size: 0.9rem;
}

.zcs-status__return p {
	margin: 0;
	color: var(--zcs-ink);
	line-height: 1.7;
	font-size: 0.92rem;
}

.zcs-check-guide {
	margin-top: 14px;
	padding: 14px;
	border-radius: 14px;
	border: 1px solid rgba(15, 107, 76, 0.18);
	background: rgba(15, 107, 76, 0.05);
	position: relative;
	z-index: 1;
}

.zcs-check-guide__text {
	margin: 0 0 12px;
	color: var(--zcs-ink);
	line-height: 1.75;
	font-size: 0.95rem;
	font-weight: 700;
}

.zcs-check-guide__figure {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(31, 42, 36, 0.1);
	background: #fff;
}

.zcs-check-guide__img {
	display: block;
	width: 100%;
	height: auto;
}

.zcs-docs-form {
	width: 100%;
	margin-top: 2px;
	padding: 16px 16px 16px;
	display: grid;
	gap: 14px;
	text-align: right;
	justify-items: stretch;
	border-radius: 18px;
	border: 1px solid rgba(15, 107, 76, 0.14);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), #f8fbf9);
	box-shadow: 0 10px 24px rgba(31, 42, 36, 0.05);
	animation: zcs-rise 0.5s ease 0.08s both;
}

.zcs-docs-form[hidden] {
	display: none !important;
}

.zcs-docs-form__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	padding: 0;
	border: 0;
}

.zcs-docs-form__kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 800;
	color: var(--zcs-accent-dark);
	background: rgba(15, 107, 76, 0.1);
	flex-shrink: 0;
}

.zcs-docs-form__hint {
	margin: 0;
	color: var(--zcs-muted);
	font-size: 0.9rem;
	line-height: 1.6;
	font-weight: 500;
	flex: 1 1 12rem;
}

.zcs-documents-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	align-items: start;
}

.zcs-field--uploader {
	margin: 0;
	min-width: 0;
}

.zcs-field--uploader > .zcs-uploader__field-label {
	display: block;
	font-weight: 700;
	margin-bottom: 0.65rem;
	font-size: 0.95rem;
	color: var(--zcs-ink);
}

.zcs-uploader {
	width: 100%;
}

.zcs-uploader__input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.zcs-uploader__dropzone {
	position: relative;
	display: flex;
	min-height: 168px;
	padding: 22px 16px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	border-radius: 16px;
	border: 1.5px dashed rgba(15, 107, 76, 0.45);
	background:
		radial-gradient(circle at 50% 20%, rgba(15, 107, 76, 0.06), transparent 55%),
		#ffffff;
	cursor: pointer;
	transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
	outline: none;
}

.zcs-uploader__dropzone:hover,
.zcs-uploader__dropzone:focus-visible {
	border-color: var(--zcs-accent);
	background:
		radial-gradient(circle at 50% 20%, rgba(15, 107, 76, 0.1), transparent 55%),
		#f4faf7;
	box-shadow: 0 10px 24px rgba(15, 107, 76, 0.1);
	transform: translateY(-2px);
}

.zcs-uploader--dragover .zcs-uploader__dropzone {
	border-style: solid;
	border-color: var(--zcs-accent);
	background: rgba(15, 107, 76, 0.08);
	box-shadow: 0 0 0 4px rgba(15, 107, 76, 0.12);
	transform: scale(1.01);
}

.zcs-uploader--uploading .zcs-uploader__dropzone {
	cursor: wait;
	pointer-events: none;
}

.zcs-uploader--error .zcs-uploader__dropzone {
	border-color: #dc3232;
	background: #fff8f8;
}

.zcs-uploader__idle,
.zcs-uploader__uploading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	text-align: center;
}

.zcs-uploader__dropzone[hidden],
.zcs-uploader__result[hidden],
.zcs-uploader__uploading[hidden],
.zcs-uploader__idle[hidden],
.zcs-uploader__error[hidden] {
	display: none !important;
}

.zcs-uploader--uploading .zcs-uploader__idle {
	display: none;
}

.zcs-uploader__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	color: var(--zcs-accent);
	background: rgba(15, 107, 76, 0.1);
	border: 1px solid rgba(15, 107, 76, 0.12);
}

.zcs-uploader__prompt {
	margin: 0;
	color: var(--zcs-ink);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.75;
	max-width: 16rem;
}

.zcs-uploader__prompt-highlight {
	color: var(--zcs-accent);
	font-weight: 800;
}

.zcs-uploader__meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	margin: 0;
	color: var(--zcs-muted);
	text-align: center;
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1.7;
}

.zcs-uploader__meta-line {
	display: block;
}

.zcs-uploader__ring-wrap {
	position: relative;
	width: 72px;
	height: 72px;
}

.zcs-uploader__ring {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.zcs-uploader__ring-track {
	fill: none;
	stroke: rgba(15, 107, 76, 0.12);
	stroke-width: 3;
}

.zcs-uploader__ring-progress {
	fill: none;
	stroke: var(--zcs-accent);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-dasharray: 113.097;
	stroke-dashoffset: 56;
	animation: zcs-uploader-spin 1s linear infinite;
}

@keyframes zcs-uploader-spin {
	to {
		stroke-dashoffset: -113.097;
	}
}

.zcs-uploader__percent {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--zcs-accent);
}

.zcs-uploader__status {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--zcs-accent);
}

.zcs-uploader__result {
	width: 100%;
}

.zcs-uploader__file-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	padding: 14px 16px;
	border-radius: 16px;
	border: 1px solid rgba(15, 107, 76, 0.16);
	background: linear-gradient(180deg, #ffffff, #f7fbf9);
	box-shadow: 0 8px 18px rgba(31, 42, 36, 0.05);
}

.zcs-uploader__file-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
}

.zcs-uploader__file-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1 1 auto;
	text-align: right;
}

.zcs-uploader__file-name {
	display: block;
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--zcs-ink);
	word-break: break-word;
	line-height: 1.4;
}

.zcs-uploader__file-details {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	font-size: 0.8125rem;
	color: var(--zcs-muted);
	line-height: 1.4;
}

.zcs-uploader__file-type {
	font-weight: 700;
	color: var(--zcs-accent);
}

.zcs-uploader__remove-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid var(--zcs-line);
	border-radius: 10px;
	background: #fff;
	color: #525252;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.zcs-uploader__remove-icon svg {
	display: block;
	width: 20px;
	height: 20px;
}

.zcs-uploader__remove-icon:hover,
.zcs-uploader__remove-icon:focus {
	border-color: #dc3232;
	color: #dc3232;
	background: #fff8f8;
	outline: none;
	transform: scale(1.04);
}

.zcs-uploader__preview-link {
	display: block;
	width: 100%;
	line-height: 0;
}

.zcs-uploader__preview {
	display: block;
	width: 100%;
	max-height: 220px;
	object-fit: contain;
	border-radius: 12px;
	border: 1px solid rgba(15, 107, 76, 0.12);
	background: #f3f7f5;
}

.zcs-uploader__error {
	margin: 0.5rem 0 0;
	padding: 0.55rem 0.8rem;
	width: 100%;
	font-size: 0.8125rem;
	color: #8a2424;
	background: #fcf0f1;
	border: 1px solid #dc3232;
	border-radius: 10px;
	text-align: center;
}

.zcs-docs-form [data-docs-submit-btn] {
	display: none;
}

.zcs-docs-form.is-phase-changed {
	animation: zcs-phase-flash 0.9s ease;
}

@keyframes zcs-phase-flash {
	0% {
		box-shadow: 0 0 0 0 rgba(15, 107, 76, 0.35);
	}
	40% {
		box-shadow: 0 0 0 6px rgba(15, 107, 76, 0.18);
	}
	100% {
		box-shadow: 0 10px 24px rgba(31, 42, 36, 0.05);
	}
}

.zcs-widget .zcs-docs-form:not([hidden]) [data-docs-advance-btn],
.zcs-widget .zcs-docs-form:not([hidden]) button[data-docs-advance-btn],
.zcs-widget .zcs-docs-form:not([hidden]) [data-docs-advance-btn][hidden],
.zcs-widget .zcs-docs-form:not([hidden]) [data-docs-advance-btn].is-visible {
	width: 100% !important;
	margin-top: 8px !important;
	min-height: 50px !important;
	font-size: 1.02rem !important;
	box-shadow: 0 10px 22px rgba(15, 107, 76, 0.22);
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
	position: static !important;
	clip: auto !important;
	height: auto !important;
	max-height: none !important;
}

.zcs-widget .zcs-docs-form:not([hidden]) [data-docs-advance-btn]:disabled,
.zcs-widget .zcs-docs-form:not([hidden]) [data-docs-advance-btn].is-waiting {
	opacity: 0.7 !important;
	cursor: not-allowed !important;
	box-shadow: none !important;
	transform: none !important;
}

.zcs-shipping {
	width: 100%;
	margin-top: 2px;
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid rgba(15, 107, 76, 0.18);
	background:
		linear-gradient(135deg, rgba(15, 107, 76, 0.1), rgba(15, 107, 76, 0.04) 48%, #ffffff);
	text-align: right;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px 14px;
	align-items: start;
	box-shadow: 0 10px 24px rgba(31, 42, 36, 0.05);
	animation: zcs-rise 0.5s ease 0.1s both;
}

.zcs-shipping[hidden] {
	display: none !important;
}

.zcs-shipping__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	color: var(--zcs-accent-dark);
	background: #fff;
	border: 1px solid rgba(15, 107, 76, 0.16);
}

.zcs-shipping__body {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.zcs-shipping__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	color: var(--zcs-accent-dark);
	line-height: 1.45;
}

.zcs-shipping__text {
	margin: 0;
	white-space: pre-wrap;
	line-height: 1.8;
	color: var(--zcs-ink);
	font-size: 0.92rem;
	opacity: 0.92;
}

.zcs-credit {
	width: 100%;
	margin-top: 2px;
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid rgba(15, 107, 76, 0.22);
	background:
		radial-gradient(circle at 0% 0%, rgba(15, 107, 76, 0.14), transparent 45%),
		linear-gradient(135deg, #e8f6ef, #ffffff 55%);
	text-align: right;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px 14px;
	align-items: start;
	box-shadow: 0 10px 24px rgba(31, 42, 36, 0.05);
	animation: zcs-rise 0.5s ease 0.1s both;
}

.zcs-credit[hidden] {
	display: none !important;
}

.zcs-credit__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	color: var(--zcs-accent-dark);
	background: #fff;
	border: 1px solid rgba(15, 107, 76, 0.16);
}

.zcs-credit__body {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.zcs-credit__title {
	margin: 0;
	font-size: 1.02rem;
	font-weight: 800;
	color: var(--zcs-accent-dark);
	line-height: 1.45;
}

.zcs-credit__text {
	margin: 0;
	white-space: pre-wrap;
	line-height: 1.8;
	color: var(--zcs-ink);
	font-size: 0.92rem;
	opacity: 0.92;
}

.zcs-documents-grid--single {
	grid-template-columns: 1fr;
	max-width: 420px;
	margin-inline: auto;
	width: 100%;
}

@media (max-width: 720px) {
	.zcs-documents-grid {
		grid-template-columns: 1fr;
	}

	.zcs-uploader__dropzone {
		min-height: 150px;
	}

	.zcs-status__hero,
	.zcs-docs-form,
	.zcs-shipping,
	.zcs-credit {
		padding: 16px;
		border-radius: 16px;
	}

	.zcs-shipping,
	.zcs-credit {
		grid-template-columns: 1fr;
		justify-items: start;
	}
}

.zcs-success {
	text-align: center;
	padding: 18px 8px 8px;
}

.zcs-success__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--zcs-accent-soft);
	color: var(--zcs-accent);
	font-size: 1.8rem;
	font-weight: 700;
}

.zcs-stage[hidden] {
	display: none !important;
}

@media (max-width: 720px) {
	.zcs-widget {
		padding: 22px 14px 28px;
	}

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

	.zcs-form__grid {
		grid-template-columns: 1fr;
	}

	.zcs-summary__list li {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.zcs-summary__list strong {
		text-align: right;
		white-space: normal;
	}
}
