


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


.csm-widget {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	padding: 43px 28px;
	color: var(--uzeda-color-heading-black, #0f172a);
	font-family: inherit;
	font-size: 14px;
	width: 100%;
	max-width: 680px;
	
	min-height: 560px;
	transition: min-height 0.3s ease;
	margin-left: auto;
	position: relative;
}

.csm-widget * {
	font-family: inherit;
	box-sizing: border-box;
}


form.csm-widget,
form.csm-widget input,
form.csm-widget button,
form.csm-widget label,
form.csm-widget a,
.csm-modal button,
.csm-modal a {
	font-family: inherit;
	letter-spacing: normal;
	text-transform: none;
}

form.csm-widget input.csm-input[type="text"],
form.csm-widget input.csm-input[type="email"],
form.csm-widget input.csm-input[type="tel"] {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	min-width: 0;
	min-height: 34px;
	margin: 0;
	font: inherit;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: normal;
	text-transform: none;
	text-indent: 0;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.6);
	background-clip: padding-box;
	color: var(--uzeda-color-heading-black, #0f172a);
	padding: 0 14px;
	box-shadow: none;
}

form.csm-widget input.csm-range__input[type="range"] {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
	border: 0;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.08);
	box-shadow: none;
}

form.csm-widget button.csm-btn,
.csm-modal button.csm-modal__close {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 0;
	margin: 0;
	font: inherit;
	font-weight: inherit;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: none;
}

html body form.csm-widget button.csm-btn.csm-btn--primary,
html body form.csm-widget button.csm-btn.csm-btn--ghost,
html body form.csm-widget button.csm-btn.csm-next,
html body form.csm-widget button.csm-btn.csm-prev,
html body form.csm-widget button.csm-btn.csm-submit {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 0;
	min-height: 44px;
	padding: 0 20px;
	margin: 0;
	border-radius: 8px;
	border-style: solid;
	border-width: 1px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	box-shadow: none;
}

html body form.csm-widget button.csm-btn.csm-btn--primary,
html body form.csm-widget button.csm-btn.csm-next,
html body form.csm-widget button.csm-btn.csm-submit {
	border-color: transparent;
	background: var(--uzeda-color-secondary, #0ea666);
	color: #ffffff;
}

html body form.csm-widget button.csm-btn.csm-btn--ghost,
html body form.csm-widget button.csm-btn.csm-prev {
	border-color: rgba(0, 0, 0, 0.15);
	background: transparent;
	color: #4a5568;
}

html body form.csm-widget label.csm-segment__label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 40px;
	margin: 0;
	padding: 10px 14px;
	border: 0;
	border-radius: 9px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: none;
	letter-spacing: normal;
	text-decoration: none;
	box-shadow: none;
}

html body form.csm-widget input.csm-input[type="text"]:focus,
html body form.csm-widget input.csm-input[type="text"]:focus-visible,
html body form.csm-widget input.csm-input[type="email"]:focus,
html body form.csm-widget input.csm-input[type="email"]:focus-visible,
html body form.csm-widget input.csm-input[type="tel"]:focus,
html body form.csm-widget input.csm-input[type="tel"]:focus-visible {
	border-color: #10d177;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(16, 209, 119, 0.15);
	outline: none;
}

form.csm-widget label.csm-label,
form.csm-widget label.csm-segment__option,
form.csm-widget label.csm-consent__label {
	margin: 0;
	font: inherit;
}

form.csm-widget a.csm-offer__cta,
form.csm-widget a.csm-summary__cta,
.csm-modal a {
	display: inline-flex;
	text-decoration: none;
}

form.csm-widget .csm-consent__text a {
	display: inline;
	text-decoration: underline;
}


.csm-widget::before {
	content: '';
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--uzeda-color-secondary, #0ea666) 50%, transparent);
	border-radius: 0 0 2px 2px;
}


.csm-stepper {
	margin-bottom: 29px;
}

.csm-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 12px;
}

.csm-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.12);
	transition: background 0.3s ease, transform 0.3s ease;
}

.csm-dot--active {
	background: #10d177;
	transform: scale(1.3);
}

.csm-dot--done {
	background: rgba(16, 209, 119, 0.45);
}


.csm-step {
	display: none;
}

.csm-step--active {
	display: block;
}

.csm-step--active.csm-step--animated {
	animation: csm-fadeInUp 0.25s ease-out both;
}


.csm-widget .csm-title {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--uzeda-color-heading-black, #0f172a);
}

.csm-widget .csm-title--small {
	font-size: 17px;
	line-height: 1.25;
	margin-bottom: 29px;
}

.csm-subtitle {
	font-size: 14px;
	line-height: 1.4;
	color: var(--uzeda-color-text, #475569);
	margin: 0 0 24px;
}


.csm-step[data-step="1"] .csm-title {
	margin-bottom: 17px;
}

.csm-step[data-step="1"] .csm-subtitle {
	margin-bottom: 34px;
}

.csm-step[data-step="1"] .csm-field {
	margin-bottom: 29px;
}

.csm-step[data-step="1"] .csm-field--slider {
	margin-bottom: 38px;
}

.csm-step[data-step="1"] .csm-actions {
	margin-top: 24px;
}

.csm-step[data-step="2"] .csm-title {
	margin-bottom: 34px;
}

.csm-step[data-step="2"] .csm-field {
	margin-bottom: 26px;
}

.csm-step[data-step="2"] .csm-consent {
	margin: 17px 0 24px;
}

.csm-step[data-step="2"] .csm-actions {
	margin-top: 22px;
}


.csm-field {
	margin-bottom: 14px;
}

.csm-label {
	display: block;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 600;
	color: var(--uzeda-color-heading-black, #0f172a);
	margin-bottom: 10px;
}

.csm-label span {
	color: #ff6b6b;
	margin-left: 2px;
}

.csm-note {
	font-size: 12px;
	line-height: 1.3;
	color: #10d177;
	margin: 2px 0 6px;
}

.csm-input {
	width: 100%;
	height: 34px;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.6);
	padding: 0 14px;
	font-size: 14px;
	color: var(--uzeda-color-heading-black, #0f172a);
	outline: none;
	transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.csm-input::placeholder {
	color: #9ca3af;
}

.csm-input:focus {
	border-color: #10d177;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(16, 209, 119, 0.15);
}


.csm-range {
	position: relative;
}

.csm-range__value {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	color: var(--uzeda-color-secondary, #0ea666);
	margin-bottom: 10px;
	letter-spacing: -0.02em;
}

.csm-range__track-wrap {
	position: relative;
	height: 6px;
	display: flex;
	align-items: center;
}

.csm-range__fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 6px;
	border-radius: 3px;
	background: var(--uzeda-color-secondary, #0ea666);
	pointer-events: none;
	transition: width 0.05s linear;
}

.csm-range__input {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.08);
	outline: none;
	margin: 0;
	padding: 0;
	cursor: pointer;
	position: relative;
	z-index: 1;
}


.csm-range__input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--uzeda-color-secondary, #0ea666);
	border: 2px solid #ffffff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.csm-range__input::-webkit-slider-thumb:hover {
	transform: scale(1.15);
	box-shadow: 0 2px 10px rgba(14, 166, 102, 0.35);
}

.csm-range__input:active::-webkit-slider-thumb {
	transform: scale(1.05);
}


.csm-range__input::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--uzeda-color-secondary, #0ea666);
	border: 2px solid #ffffff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	cursor: pointer;
}

.csm-range__input::-moz-range-track {
	height: 6px;
	border-radius: 3px;
	background: transparent;
	border: none;
}

.csm-range__input::-moz-range-progress {
	height: 6px;
	border-radius: 3px;
	background: var(--uzeda-color-secondary, #0ea666);
}

.csm-range__limits {
	display: flex;
	justify-content: space-between;
	margin-top: 7px;
	font-size: 11px;
	color: #9ca3af;
	font-weight: 500;
}

.csm-field--slider {
	margin-bottom: 19px;
}


.csm-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 12px;
}

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


.csm-progress {
	height: 4px;
	background: rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	overflow: hidden;
}

.csm-progress span {
	display: block;
	height: 100%;
	border-radius: 4px;
	background: var(--uzeda-color-secondary, #0ea666);
	transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


.csm-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 7px;
}

.csm-actions--end {
	justify-content: flex-end;
}

.csm-btn {
	border: 0;
	border-radius: 8px;
	padding: 0 20px;
	min-height: 44px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.csm-btn:hover {
	transform: translateY(-1px);
}

.csm-btn:active {
	transform: translateY(0);
}

.csm-btn--primary {
	background: var(--uzeda-color-secondary, #0ea666);
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(14, 166, 102, 0.3);
}

.csm-btn--primary:hover {
	box-shadow: 0 4px 14px rgba(14, 166, 102, 0.4);
}

.csm-btn--ghost {
	background: transparent;
	color: #4a5568;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

.csm-btn--ghost:hover {
	background: rgba(0, 0, 0, 0.04);
	color: #1a2332;
	border-color: rgba(0, 0, 0, 0.25);
}


.csm-segment {
	display: flex;
	gap: 4px;
	padding: 4px;
	border-radius: 12px;
	background: #f0f1f3;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.csm-segment__option {
	flex: 1;
	cursor: pointer;
	margin: 0;
}

.csm-segment__input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.csm-segment__label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 600;
	color: #9ca3af;
	text-align: center;
	line-height: 1.2;
	border-radius: 9px;
	transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
	user-select: none;
}

.csm-segment__label:hover {
	color: #6b7280;
}

.csm-segment__icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.csm-segment__input:checked + .csm-segment__label {
	background: #ffffff;
	color: #065f46;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.csm-segment__input:focus-visible + .csm-segment__label {
	box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgba(14, 166, 102, 0.35);
}

.csm-field--segment {
	margin-bottom: 16px;
}


.csm-offer--muted {
	opacity: 1;
	filter: none;
	border-color: #e5e7eb;
	background: #f9fafb;
}

.csm-offer__muted-icon {
	margin-bottom: 10px;
}

.csm-offer--muted .csm-offer__title {
	color: #9ca3af;
}

.csm-offer--muted .csm-offer__desc {
	color: #9ca3af;
	font-size: 13px;
}

.csm-offer__desc--muted {
	margin-top: 8px;
	font-style: italic;
	font-size: 12px;
	color: #b0b8c4;
}


.csm-consent {
	margin-bottom: 12px;
}

.csm-consent__label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	cursor: pointer;
	font-size: 12px;
	line-height: 1.45;
	color: var(--uzeda-color-text, #475569);
}

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

.csm-consent__check {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	border-radius: 4px;
	border: 1.5px solid rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.6);
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	position: relative;
	margin-top: 1px;
}

.csm-consent__check::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 5px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity 0.15s ease;
}

.csm-consent__input:checked + .csm-consent__check {
	background: var(--uzeda-color-secondary, #0ea666);
	border-color: var(--uzeda-color-secondary, #0ea666);
	box-shadow: 0 1px 4px rgba(14, 166, 102, 0.25);
}

.csm-consent__input:checked + .csm-consent__check::after {
	opacity: 1;
}

.csm-consent__input:focus-visible + .csm-consent__check {
	box-shadow: 0 0 0 3px rgba(14, 166, 102, 0.2);
}

.csm-consent__text {
	flex: 1;
}

.csm-consent__text a {
	color: var(--uzeda-color-secondary, #0ea666);
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 600;
}

.csm-consent__text a:hover {
	color: var(--uzeda-color-heading-black, #0f172a);
}

.csm-consent--error .csm-consent__check {
	border-color: #ff6b6b;
	box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.15);
}


.csm-disclaimer {
	font-size: 11px;
	line-height: 1.45;
	font-style: italic;
	color: #8896a6;
	margin: 0 0 12px;
}


.csm-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 29px 12px 14px;
}

.csm-success__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--uzeda-color-secondary, #0ea666);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 19px;
	animation: csm-scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes csm-scaleIn {
	from { opacity: 0; transform: scale(0.5); }
	to   { opacity: 1; transform: scale(1); }
}

.csm-success__title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: var(--uzeda-color-heading-black, #0f172a);
}

.csm-success__text {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--uzeda-color-text, #475569);
	max-width: 340px;
}


.csm-result-v2 {
	padding-top: 4px;
}

.csm-result-v2__header {
	text-align: center;
	margin-bottom: 19px;
}

.csm-result-v2__eyebrow {
	margin: 0 0 7px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #22c983;
}

.csm-result-v2__title {
	margin: 0;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 700;
	color: #064e3b;
}

.csm-result-v2__name {
	font-weight: 700;
}

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

.csm-offer {
	border: 2px solid #bff2d6;
	border-radius: 14px;
	background: #ffffff;
	padding: 20px 16px 16px;
	display: flex;
	flex-direction: column;
	min-height: 220px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.csm-offer--highlight {
	border-color: #22c983;
	box-shadow: 0 6px 16px rgba(34, 201, 131, 0.12);
}

.csm-offer--muted {
	opacity: 0.7;
	filter: grayscale(0.1);
}

.csm-offer__kicker {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #22c983;
}

.csm-offer__title {
	margin: 0 0 7px;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	color: #065f46;
}

.csm-offer__subtitle {
	margin: 0;
	font-size: 13px;
	color: #6b7280;
}

.csm-offer__amount {
	margin: 10px 0 0;
	font-size: 18px;
	line-height: 1.15;
	font-weight: 800;
	color: #047857;
}

.csm-offer__period {
	margin: 2px 0 10px;
	font-size: 13px;
	color: #4b5563;
}

.csm-offer__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	color: #4b5563;
	margin-top: auto;
}

.csm-offer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 14px;
	min-height: 40px;
	padding: 8px 14px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.1;
	background: #0ea666;
	color: #ffffff;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.csm-offer__cta:hover {
	color: #ffffff;
	background: #0a8c56;
	transform: translateY(-1px);
}

.csm-offer__cta--ghost {
	background: #ffffff;
	color: #0ea666;
	border: 2px solid #8be4b9;
}

.csm-offer__cta--ghost:hover {
	background: #effcf4;
	color: #0a8c56;
}


.csm-offer__badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin: 8px 0 12px;
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(14, 166, 102, 0.1);
	color: #047857;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.csm-offer__badge-icon {
	font-size: 11px;
}


.csm-reasons {
	margin-top: 16px;
	padding: 14px 16px;
	border-radius: 12px;
	background: rgba(14, 166, 102, 0.05);
	border: 1px solid rgba(14, 166, 102, 0.12);
}

.csm-reasons__title {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 700;
	color: #065f46;
}

.csm-reasons__list {
	margin: 0;
	padding: 0 0 0 18px;
	font-size: 13px;
	line-height: 1.55;
	color: #1f2937;
}

.csm-reasons__list li {
	margin-bottom: 4px;
}

.csm-reasons__list li:last-child {
	margin-bottom: 0;
}

.csm-summary {
	border-radius: 14px;
	padding: 17px;
	text-align: center;
}

.csm-summary--low {
	background: #065f46;
	color: #ffffff;
}

.csm-summary--group-a {
	background: #064e3b;
	color: #ffffff;
}

.csm-summary__kicker,
.csm-summary__text,
.csm-summary__pct,
.csm-summary__period {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
}

.csm-summary__amount {
	margin: 8px 0 0;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 800;
}

.csm-summary__period {
	font-size: 13px;
	opacity: 0.9;
	margin-top: 2px;
}

.csm-summary__pct {
	font-weight: 700;
	opacity: 0.95;
	margin-top: 8px;
}

.csm-summary__text {
	opacity: 0.95;
	margin-top: 10px;
}

.csm-summary__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 14px;
	min-height: 40px;
	padding: 8px 18px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	background: #ffffff;
	color: #065f46;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.csm-summary__cta:hover {
	color: #064e3b;
	transform: translateY(-1px);
}


.csm-result-v2 .csm-offer a.csm-offer__cta {
	color: #ffffff;
}

.csm-result-v2 .csm-offer a.csm-offer__cta:hover,
.csm-result-v2 .csm-offer a.csm-offer__cta:focus {
	color: #ffffff;
}

.csm-result-v2 .csm-offer a.csm-offer__cta--ghost {
	color: #0ea666;
}

.csm-result-v2 .csm-offer a.csm-offer__cta--ghost:hover,
.csm-result-v2 .csm-offer a.csm-offer__cta--ghost:focus {
	color: #0a8c56;
}

.csm-result-v2 .csm-summary a.csm-summary__cta {
	color: #0b3f2e;
}

.csm-result-v2 .csm-summary a.csm-summary__cta:hover,
.csm-result-v2 .csm-summary a.csm-summary__cta:focus {
	color: #072a1f;
}


.csm-input[aria-invalid="true"] {
	border-color: #ff6b6b;
	box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.15);
}


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


.csm-status {
	margin-top: 12px;
	font-size: 13px;
	color: #5a6577;
}

.csm-status--error {
	color: #ff6b6b;
}

.csm-submit.is-loading {
	opacity: 0.6;
	cursor: wait;
	pointer-events: none;
}


.csm-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px 12px;
	min-height: 260px;
}

.csm-loading__spinner {
	width: 36px;
	height: 36px;
	border: 3px solid rgba(0, 0, 0, 0.08);
	border-top-color: var(--uzeda-color-secondary, #0ea666);
	border-radius: 50%;
	animation: csm-spin 0.7s linear infinite;
	margin-bottom: 19px;
}

@keyframes csm-spin {
	to { transform: rotate(360deg); }
}

.csm-loading__text {
	margin: 0;
	font-size: 13px;
	color: var(--uzeda-color-text, #475569);
}


@media (max-width: 1024px) {
	.csm-widget {
		padding: 34px 22px;
		max-width: 100%;
		min-height: 525px;
		margin-left: 0;
	}

	.csm-widget .csm-title {
		font-size: 18px;
	}

	.csm-widget .csm-title--small {
		font-size: 16px;
	}

	.csm-btn {
		font-size: 14px;
		min-height: 44px;
	}

	.csm-result-v2__title {
		font-size: 20px;
	}

	.csm-offer__title {
		font-size: 18px;
	}

	.csm-offer__amount {
		font-size: 16px;
	}

	.csm-summary__amount {
		font-size: 22px;
	}
}


@media (max-width: 767px) {
	.csm-widget {
		padding: 24px 16px;
		border-radius: 16px;
	}

	.csm-grid-2 {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.csm-input {
		height: 38px;
		font-size: 14px;
	}

	.csm-widget .csm-title {
		font-size: 17px;
	}

	.csm-widget .csm-title--small {
		font-size: 15px;
	}

	.csm-subtitle {
		font-size: 13px;
	}

	.csm-disclaimer {
		font-size: 10px;
	}

	.csm-btn {
		font-size: 13px;
		min-height: 44px;
		padding: 0 16px;
	}

	.csm-dropzone {
		padding: 14px;
	}

	.csm-result-v2__title {
		font-size: 17px;
	}

	.csm-offers {
		grid-template-columns: 1fr;
	}

	.csm-offer {
		min-height: 0;
	}

	.csm-offer__title {
		font-size: 16px;
	}

	.csm-offer__amount {
		font-size: 14px;
	}

	.csm-summary__kicker,
	.csm-summary__text,
	.csm-summary__pct,
	.csm-summary__period {
		font-size: 12px;
	}

	.csm-summary__amount {
		font-size: 19px;
	}
}


.csm-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	align-items: center;
	justify-content: center;
}

.csm-modal[aria-hidden="false"] {
	display: flex;
}

.csm-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.csm-modal__container {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	width: 92%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 32px;
	animation: csmModalIn 0.25s ease-out;
}

@keyframes csmModalIn {
	from { opacity: 0; transform: translateY(24px) scale(0.97); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.csm-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: #6b7280;
	cursor: pointer;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.15s, color 0.15s;
}

.csm-modal__close:hover {
	background: #f3f4f6;
	color: #111827;
}

.csm-modal__body {
	
}

.csm-modal__body .clf-widget {
	box-shadow: none;
	border: none;
	padding: 0;
}
