.tmer-app {
	--tmer-brand: #0d9488;
	--tmer-brand-dark: #0f766e;
	--tmer-brand-deep: #115e59;
	--tmer-brand-pale: #f0fdfa;
	--tmer-ink: #0f172a;
	--tmer-text: #334155;
	--tmer-muted: #64748b;
	--tmer-line: #e2e8f0;
	--tmer-soft: #f8fafc;
	--tmer-danger: #e11d48;
	--tmer-amber: #d97706;
	color: var(--tmer-text);
	font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	margin: 10px auto;
	max-width: 1040px;
	width: 100%;
}

.tmer-app,
.tmer-app * {
	box-sizing: border-box;
}

.tmer-app [hidden] {
	display: none !important;
}

.tmer-shell {
	background:
		radial-gradient(circle at 8% 0, rgba(20, 184, 166, 0.08), transparent 30%),
		linear-gradient(180deg, #fff 0, #f8fafc 100%);
	border: 1px solid var(--tmer-line);
	border-radius: 22px;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.09);
	overflow: hidden;
}

.tmer-brandbar {
	align-items: center;
	background: rgba(255, 255, 255, 0.94);
	display: flex;
	gap: 12px;
}

.tmer-brandmark {
	align-items: center;
	background: linear-gradient(135deg, #14b8a6, var(--tmer-brand-dark));
	border-radius: 12px;
	box-shadow: 0 7px 18px rgba(13, 148, 136, 0.22);
	color: #fff;
	display: flex;
	font-family: Georgia, serif;
	font-size: 24px;
	height: 43px;
	justify-content: center;
	line-height: 1;
	width: 43px;
}

.tmer-brandtitle {
	color: var(--tmer-ink);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
}

.tmer-brandsubtitle {
	color: var(--tmer-brand-dark);
	font-size: 11px;
	font-weight: 650;
	margin-top: 2px;
}

.tmer-intro {
	padding: 36px 24px 24px;
	text-align: center;
}

.tmer-badge {
	background: #ccfbf1;
	border-radius: 999px;
	color: var(--tmer-brand-deep);
	display: inline-block;
	font-size: 17px;
	letter-spacing: 0.08em;
	padding: 5px 11px;
}

.tmer-intro h2 {
	color: var(--tmer-ink);
	font-size: clamp(26px, 4vw, 36px);
	font-weight: 850;
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin: 10px 0 7px;
}

.tmer-intro p {
	color: var(--tmer-muted);
	font-size: 14px;
	margin: 0 auto;
	max-width: 660px;
}

.tmer-stepper {
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--tmer-line);
	border-radius: 16px;
	display: flex;
	justify-content: space-between;
	margin: 0 34px 24px;
	padding: 20px 26px 17px;
	position: relative;
}

.tmer-progress-track {
	background: #e2e8f0;
	height: 4px;
	left: 11%;
	position: absolute;
	right: 11%;
	top: 39px;
}

.tmer-progress-fill {
	background: linear-gradient(90deg, var(--tmer-brand), #14b8a6);
	height: 100%;
	transition: width 280ms ease;
	width: 0;
}

.tmer-step {
	align-items: center;
	display: flex;
	flex: 0 1 130px;
	flex-direction: column;
	position: relative;
	text-align: center;
	z-index: 1;
}

.tmer-step-number {
	align-items: center;
	background: #e2e8f0;
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 1px #cbd5e1;
	color: #64748b;
	display: flex;
	font-size: 13px;
	font-weight: 800;
	height: 39px;
	justify-content: center;
	transition: 220ms ease;
	width: 39px;
}

.tmer-step-label {
	color: #94a3b8;
	font-size: 11px;
	font-weight: 650;
	margin-top: 8px;
}

.tmer-step.is-active .tmer-step-number,
.tmer-step.is-complete .tmer-step-number {
	background: var(--tmer-brand);
	box-shadow: 0 0 0 1px var(--tmer-brand), 0 6px 15px rgba(13, 148, 136, 0.24);
	color: #fff;
}

.tmer-step.is-active .tmer-step-label,
.tmer-step.is-complete .tmer-step-label {
	color: var(--tmer-brand-dark);
	font-weight: 800;
}

.tmer-step.is-complete .tmer-step-number {
	font-size: 0;
}

.tmer-step.is-complete .tmer-step-number::after {
	content: "✓";
	font-size: 15px;
}

.tmer-card {
	background: #fff;
	border: 1px solid rgba(203, 213, 225, 0.85);
	border-radius: 18px;
	box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
	margin: 0 34px 38px;
	min-height: 430px;
	padding: 32px;
}

.tmer-form {
	margin: 0;
	position: relative;
}

.tmer-section {
	animation: tmer-fade-in 260ms ease both;
}

@keyframes tmer-fade-in {
	from {
		opacity: 0;
		transform: translateY(7px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tmer-section-heading {
	align-items: flex-start;
	border-bottom: 1px solid #f1f5f9;
	display: flex;
	gap: 13px;
	margin-bottom: 24px;
	padding-bottom: 17px;
}

.tmer-section-icon {
	align-items: center;
	background: var(--tmer-brand-pale);
	border: 1px solid #ccfbf1;
	border-radius: 10px;
	color: var(--tmer-brand-dark);
	display: flex;
	font-size: 11px;
	font-weight: 900;
	height: 36px;
	justify-content: center;
	letter-spacing: 0.04em;
	margin-top: 1px;
	width: 36px;
}

.tmer-section-heading h3 {
	color: var(--tmer-ink);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 3px;
}

.tmer-section-heading p {
	color: var(--tmer-muted);
	font-size: 13px;
	margin: 0;
}

.tmer-grid {
	display: grid;
	gap: 20px;
}

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

.tmer-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tmer-field {
	margin-bottom: 20px;
}

.tmer-field > label,
.tmer-label-row label,
.tmer-location legend,
.tmer-satisfaction > label {
	color: #334155;
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.055em;
	line-height: 1.4;
	margin: 0 0 7px;
	text-transform: uppercase;
}

.tmer-field label span,
.tmer-location legend span {
	color: var(--tmer-danger);
}

.tmer-label-row {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.tmer-app input[type="text"],
.tmer-app input[type="email"],
.tmer-app input[type="tel"],
.tmer-app input[type="date"],
.tmer-app textarea {
	appearance: none;
	background: var(--tmer-soft);
	border: 1px solid #cbd5e1;
	border-radius: 11px;
	box-shadow: none;
	color: var(--tmer-ink);
	font-family: inherit;
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
	min-height: 45px;
	outline: none;
	padding: 11px 13px;
	transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
	width: 100%;
}

.tmer-app textarea {
	min-height: 84px;
	resize: vertical;
}

.tmer-app input:focus,
.tmer-app textarea:focus {
	background: #fff;
	border-color: var(--tmer-brand);
	box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14);
}

.tmer-app input.is-invalid,
.tmer-app textarea.is-invalid {
	border-color: var(--tmer-danger);
	box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.08);
}

.tmer-text-button {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: var(--tmer-brand-dark) !important;
	cursor: pointer;
	font-family: inherit;
	font-size: 11px;
	font-weight: 800;
	margin: 0 0 7px;
	padding: 0 !important;
	text-decoration: none;
}

.tmer-text-button:hover {
	text-decoration: underline;
}

.tmer-error {
	color: var(--tmer-danger);
	display: none;
	font-size: 11px;
	font-weight: 700;
	margin-top: 5px;
}

.tmer-error.is-visible {
	display: block;
}

.tmer-notice {
	border: 1px solid;
	border-radius: 12px;
	font-size: 13px;
	margin-bottom: 20px;
	padding: 14px 16px;
}

.tmer-notice strong {
	display: block;
	font-size: 13px;
	margin-bottom: 5px;
}

.tmer-notice ul {
	list-style: disc;
	margin: 4px 0 0 19px;
	padding: 0;
}

.tmer-notice li {
	margin: 3px 0;
}

.tmer-notice-amber {
	background: #fffbeb;
	border-color: #fde68a;
	color: #92400e;
}

.tmer-options {
	display: grid;
	gap: 11px;
}

.tmer-option-group-label {
	color: #94a3b8;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.08em;
	margin: 7px 0 -2px;
	text-transform: uppercase;
}

.tmer-option {
	align-items: flex-start;
	background: #fff;
	border: 2px solid var(--tmer-line);
	border-radius: 13px;
	cursor: pointer;
	display: flex;
	gap: 13px;
	margin: 0;
	padding: 15px;
	transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.tmer-option:hover {
	border-color: #5eead4;
	transform: translateY(-1px);
}

.tmer-option.is-selected {
	background: var(--tmer-brand-pale);
	border-color: var(--tmer-brand);
}

.tmer-option.is-disabled {
	background: #f8fafc;
	cursor: not-allowed;
	opacity: 0.48;
	transform: none;
}

.tmer-option input,
.tmer-location-option input,
.tmer-terms input {
	accent-color: var(--tmer-brand);
	flex: 0 0 auto;
	height: 18px;
	margin: 2px 0 0;
	width: 18px;
}

.tmer-option-copy {
	display: block;
	flex: 1;
	min-width: 0;
}

.tmer-option-topline {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.tmer-option-topline > strong {
	color: var(--tmer-ink);
	font-size: 14px;
	font-weight: 800;
}

.tmer-price {
	background: #ccfbf1;
	border-radius: 999px;
	color: var(--tmer-brand-deep);
	flex: 0 0 auto;
	font-size: 10px;
	font-weight: 850;
	padding: 5px 9px;
}

.tmer-price.is-free {
	background: #f1f5f9;
	color: #475569;
}

.tmer-option-description {
	color: var(--tmer-muted);
	display: block;
	font-size: 12px;
	margin-top: 3px;
}

.tmer-fee-banner {
	align-items: center;
	background: linear-gradient(135deg, var(--tmer-brand-pale), #ecfeff);
	border: 1px solid #99f6e4;
	border-radius: 13px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	padding: 16px 18px;
}

.tmer-fee-banner > div > strong {
	color: var(--tmer-ink);
	display: block;
	font-size: 14px;
	font-weight: 800;
}

.tmer-fee-banner > div > span {
	color: var(--tmer-muted);
	display: block;
	font-size: 11px;
	margin-top: 2px;
}

.tmer-fee-total {
	color: var(--tmer-brand-deep);
	font-size: 21px;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.tmer-location {
	background: var(--tmer-soft);
	border: 1px solid var(--tmer-line);
	border-radius: 13px;
	margin: 0 0 20px;
	min-width: 0;
	padding: 17px;
}

.tmer-location legend {
	float: left;
	padding: 0;
	width: 100%;
}

.tmer-location .tmer-grid {
	clear: both;
}

.tmer-location-option {
	align-items: center;
	background: #fff;
	border: 2px solid var(--tmer-line);
	border-radius: 11px;
	cursor: pointer;
	display: flex;
	gap: 9px;
	margin: 0;
	padding: 12px;
	transition: border-color 150ms ease, background 150ms ease;
}

.tmer-location-option:has(input:checked) {
	background: var(--tmer-brand-pale);
	border-color: var(--tmer-brand);
}

.tmer-location-option span {
	color: var(--tmer-ink);
	font-size: 13px;
	font-weight: 750;
}

.tmer-prerequisite-card,
.tmer-satisfaction {
	background: var(--tmer-soft);
	border: 1px solid var(--tmer-line);
	border-radius: 13px;
	margin-bottom: 20px;
	padding: 18px;
}

.tmer-prerequisite-card h4 {
	color: var(--tmer-ink);
	font-size: 14px;
	font-weight: 800;
	margin: 0 0 16px;
}

.tmer-prerequisite-pair {
	border-bottom: 1px solid var(--tmer-line);
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 16px;
}

.tmer-prerequisite-pair:last-child {
	border-bottom: 0;
	margin-bottom: 0;
}

.tmer-prerequisite-pair .tmer-field {
	margin-bottom: 16px;
}

.tmer-stars {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	margin: 4px 0 10px;
}

.tmer-stars button {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #cbd5e1 !important;
	cursor: pointer;
	font-size: 24px;
	height: auto;
	line-height: 1;
	margin: 0;
	padding: 2px !important;
}

.tmer-stars button.is-on {
	color: #f59e0b !important;
}

.tmer-stars button:focus-visible {
	border-radius: 4px;
	outline: 2px solid var(--tmer-brand);
	outline-offset: 2px;
}

.tmer-stars span {
	color: var(--tmer-muted);
	font-size: 11px;
	font-weight: 700;
	margin-left: 7px;
}

.tmer-summary {
	background: linear-gradient(145deg, #0f172a, #1e293b);
	border: 1px solid #334155;
	border-radius: 16px;
	box-shadow: 0 13px 28px rgba(15, 23, 42, 0.2);
	color: #fff;
	margin-bottom: 20px;
	padding: 22px;
}

.tmer-summary-grid {
	border-bottom: 1px solid #334155;
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding-bottom: 18px;
}

.tmer-summary span {
	color: #94a3b8;
	display: block;
	font-size: 10px;
	font-weight: 650;
	margin-bottom: 3px;
}

.tmer-summary strong {
	color: #f8fafc;
	display: block;
	font-size: 13px;
	font-weight: 750;
	overflow-wrap: anywhere;
}

.tmer-summary-courses {
	border-bottom: 1px solid #334155;
	padding: 17px 0;
}

.tmer-summary-courses [data-summary="courses"] {
	display: grid;
	gap: 7px;
	margin-top: 7px;
}

.tmer-summary-courses [data-summary="courses"] > div {
	align-items: center;
	background: rgba(51, 65, 85, 0.55);
	border: 1px solid #475569;
	border-radius: 9px;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	padding: 9px 11px;
}

.tmer-summary-courses [data-summary="courses"] > div span {
	color: #fbbf24;
	font-size: 11px;
	font-weight: 850;
	margin: 0;
}

.tmer-summary-footer {
	align-items: flex-end;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding-top: 18px;
}

.tmer-summary-footer > div:last-child {
	text-align: right;
}

.tmer-summary .tmer-summary-total {
	color: #fbbf24;
	font-size: 25px;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.tmer-terms {
	align-items: flex-start;
	color: var(--tmer-muted);
	cursor: pointer;
	display: flex;
	font-size: 12px;
	gap: 10px;
	margin: 0;
	padding: 5px 2px;
}

.tmer-terms input {
	margin-top: 1px;
}

.tmer-form-alert {
	background: #fff1f2;
	border: 1px solid #fecdd3;
	border-radius: 10px;
	color: #9f1239;
	font-size: 12px;
	font-weight: 700;
	margin-top: 18px;
	padding: 11px 13px;
}

.tmer-actions {
	align-items: center;
	border-top: 1px solid var(--tmer-line);
	display: flex;
	justify-content: flex-end;
	margin-top: 28px;
	padding-top: 22px;
}

.tmer-actions .tmer-button-secondary {
	margin-right: auto;
}

.tmer-app .tmer-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 11px;
	box-shadow: none;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	line-height: 1.2;
	margin: 0;
	min-height: 43px;
	padding: 11px 18px;
	text-decoration: none;
	transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.tmer-app .tmer-button:hover {
	transform: translateY(-1px);
}

.tmer-app .tmer-button:focus-visible {
	outline: 3px solid rgba(20, 184, 166, 0.25);
	outline-offset: 2px;
}

.tmer-app .tmer-button:disabled {
	cursor: wait;
	opacity: 0.65;
	transform: none;
}

.tmer-button-primary {
	background: var(--tmer-brand) !important;
	border-color: var(--tmer-brand) !important;
	box-shadow: 0 7px 17px rgba(13, 148, 136, 0.2) !important;
	color: #fff !important;
}

.tmer-button-primary:hover {
	background: var(--tmer-brand-dark) !important;
	border-color: var(--tmer-brand-dark) !important;
}

.tmer-button-secondary {
	background: #fff !important;
	border-color: #cbd5e1 !important;
	color: #334155 !important;
}

.tmer-button-secondary:hover {
	background: var(--tmer-soft) !important;
}

.tmer-button-submit {
	background: linear-gradient(135deg, #059669, #0d9488) !important;
	border-color: #059669 !important;
	box-shadow: 0 8px 19px rgba(5, 150, 105, 0.22) !important;
	color: #fff !important;
	padding-left: 23px !important;
	padding-right: 23px !important;
}

.tmer-button.is-loading::before {
	animation: tmer-spin 800ms linear infinite;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	border-top-color: #fff;
	content: "";
	height: 15px;
	width: 15px;
}

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

.tmer-success {
	padding: 48px 24px;
	text-align: center;
}

.tmer-success-icon {
	align-items: center;
	background: #d1fae5;
	border: 1px solid #6ee7b7;
	border-radius: 50%;
	color: #047857;
	display: flex;
	font-size: 28px;
	font-weight: 900;
	height: 70px;
	justify-content: center;
	margin: 0 auto 17px;
	width: 70px;
}

.tmer-success h3 {
	color: var(--tmer-ink);
	font-size: 25px;
	font-weight: 850;
	margin: 0 0 8px;
}

.tmer-success p {
	color: var(--tmer-muted);
	font-size: 13px;
	margin: 0 auto 13px;
	max-width: 540px;
}

.tmer-success > strong {
	background: var(--tmer-brand-pale);
	border: 1px dashed var(--tmer-brand);
	border-radius: 10px;
	color: var(--tmer-brand-deep);
	display: inline-block;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 0.05em;
	margin: 4px 0 14px;
	padding: 9px 15px;
}

.tmer-success .tmer-email-note {
	margin-bottom: 20px;
}

.tmer-honeypot {
	height: 1px !important;
	left: -10000px !important;
	overflow: hidden !important;
	position: absolute !important;
	top: auto !important;
	width: 1px !important;
}

@media (max-width: 720px) {
	.tmer-app {
		margin: 18px auto;
	}

	.tmer-shell {
		border-radius: 16px;
	}

	.tmer-brandbar {
	}

	.tmer-intro {
		padding: 28px 16px 20px;
	}

	.tmer-stepper {
		margin: 0 14px 18px;
		padding: 16px 10px 13px;
	}

	.tmer-progress-track {
		left: 13%;
		right: 13%;
		top: 35px;
	}

	.tmer-step-number {
		height: 36px;
		width: 36px;
	}

	.tmer-step-label {
		font-size: 9px;
	}

	.tmer-card {
		border-radius: 14px;
		margin: 0 14px 20px;
		padding: 22px 18px;
	}

	.tmer-grid-2,
	.tmer-grid-3,
	.tmer-prerequisite-pair {
		grid-template-columns: 1fr;
	}

	.tmer-grid {
		gap: 0;
	}

	.tmer-location .tmer-grid {
		gap: 8px;
	}

	.tmer-prerequisite-pair {
		gap: 0;
	}

	.tmer-option-topline,
	.tmer-fee-banner {
		align-items: flex-start;
		flex-direction: column;
	}

	.tmer-price {
		align-self: flex-start;
	}

	.tmer-fee-banner {
		gap: 10px;
	}

	.tmer-summary-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 460px) {
	.tmer-brandsubtitle {
		max-width: 220px;
	}

	.tmer-step-label {
		display: none;
	}

	.tmer-stepper {
		padding-bottom: 16px;
	}

	.tmer-progress-track {
		top: 35px;
	}

	.tmer-card {
		padding: 20px 14px;
	}

	.tmer-section-heading h3 {
		font-size: 17px;
	}

	.tmer-option {
		padding: 13px 11px;
	}

	.tmer-summary {
		padding: 18px 15px;
	}

	.tmer-summary-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.tmer-summary-footer > div:last-child {
		text-align: left;
	}

	.tmer-actions {
		align-items: stretch;
		flex-wrap: wrap;
		gap: 8px;
	}

	.tmer-actions .tmer-button {
		flex: 1;
		margin: 0;
		min-width: 130px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tmer-app *,
	.tmer-app *::before,
	.tmer-app *::after {
		animation-duration: 0.01ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
