.stratiq-courses-grid,
.stratiq-courses-grid *,
.stratiq-registration,
.stratiq-registration * {
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stratiq-courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin: 24px 0;
}

.stratiq-course-card {
	background: #fff;
	border: 1px solid #e5e9ee;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 3px rgba(16, 24, 40, 0.06);
}

.stratiq-course-card__image {
	height: 160px;
	background-size: cover;
	background-position: center;
	background-color: #1F2A44;
}

.stratiq-course-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.stratiq-badge {
	align-self: flex-start;
	background: #fff3cd;
	color: #7a5b00;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
}

.stratiq-course-card__title {
	margin: 0;
	font-size: 18px;
	color: #1F2A44;
}

.stratiq-course-card__desc {
	margin: 0;
	font-size: 14px;
	color: #4a5568;
	line-height: 1.5;
}

.stratiq-course-card__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	color: #555;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.stratiq-course-card__footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
}

.stratiq-course-card__price {
	font-weight: 700;
	color: #1F2A44;
	font-size: 16px;
}

.stratiq-btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 6px;
	border: none;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.15s ease;
}

.stratiq-btn:hover {
	opacity: 0.9;
}

.stratiq-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.stratiq-btn--primary {
	background: #1F2A44;
	color: #fff;
}

.stratiq-btn--full {
	width: 100%;
}

.stratiq-registration {
	max-width: 640px;
	margin: 32px auto;
	background: #fff;
	border: 1px solid #e5e9ee;
	border-radius: 12px;
	padding: 32px;
	box-shadow: 0 1px 3px rgba(16, 24, 40, 0.06);
}

.stratiq-form-title {
	margin: 0 0 4px;
	color: #1F2A44;
	font-size: 22px;
}

.stratiq-form-subtitle {
	margin: 0 0 24px;
	color: #667085;
	font-size: 14px;
}

.stratiq-field {
	margin-bottom: 18px;
	flex: 1;
}

.stratiq-field-row {
	display: flex;
	gap: 16px;
}

.stratiq-field-row .stratiq-field {
	min-width: 0;
}

.stratiq-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #1F2A44;
	margin-bottom: 6px;
}

.stratiq-field .req {
	color: #d92d20;
}

.stratiq-field input,
.stratiq-field select,
.stratiq-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d0d5dd;
	border-radius: 6px;
	font-size: 14px;
	box-sizing: border-box;
	font-family: inherit;
}

.stratiq-field input:focus,
.stratiq-field select:focus,
.stratiq-field textarea:focus {
	outline: 2px solid #1F2A44;
	outline-offset: 1px;
}

.stratiq-form-error {
	background: #fef3f2;
	color: #b42318;
	border: 1px solid #fecdca;
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 13px;
	margin-bottom: 16px;
}

.stratiq-form-note {
	text-align: center;
	font-size: 12px;
	color: #667085;
	margin-top: 14px;
}

.stratiq-contact-note {
	text-align: center;
	font-size: 13px;
	color: #667085;
	margin-top: 20px;
}

.stratiq-hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.stratiq-status-loading,
.stratiq-status-panel {
	text-align: center;
	padding: 20px 0;
}

.stratiq-spinner {
	display: inline-block;
	width: 32px;
	height: 32px;
	border: 3px solid #e5e9ee;
	border-top-color: #1F2A44;
	border-radius: 50%;
	animation: stratiq-spin 0.8s linear infinite;
	margin-bottom: 12px;
}

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

.stratiq-status-panel h2 {
	color: #1F2A44;
	margin: 0 0 8px;
}

.stratiq-status-panel--success h2 {
	color: #067647;
}

.stratiq-status-panel--failed h2 {
	color: #b42318;
}

.stratiq-status-table {
	width: 100%;
	margin-top: 16px;
	border-collapse: collapse;
	text-align: left;
}

.stratiq-status-table td {
	padding: 8px 4px;
	border-bottom: 1px solid #eef1f4;
	font-size: 14px;
}

.stratiq-status-table td:first-child {
	color: #667085;
	width: 40%;
}

@media (max-width: 600px) {
	.stratiq-field-row {
		flex-direction: column;
		gap: 0;
	}

	.stratiq-registration {
		padding: 20px;
	}
}
