
	/* ========== KONTENER GŁÓWNY ========== */
	.survey-container {
		background: #fff;
		border-radius: 16px;
		box-shadow: 0 12px 24px rgba(26, 43, 68, 0.06);
		padding: 32px;
		border: 1px solid #E4E7EC;
		font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	}

	/* ========== HEADER ========== */
	.survey-header {
		margin-bottom: 24px;
		padding-bottom: 16px;
		border-bottom: 1px solid #E4E7EC;
	}

	.survey-title {
		font-size: 1.125rem;
		font-weight: 800;
		color: #101828;
		margin-bottom: 8px;
		text-transform: uppercase;
		letter-spacing: 0.02em;
	}

	.survey-desc {
		font-size: 0.75rem;
		color: #667085;
		line-height: 1.5;
	}

	/* ========== PYTANIA ========== */
	.survey-question {
		margin-bottom: 24px;
	}

	.survey-question-title {
		font-size: 0.875rem;
		font-weight: 700;
		color: #1A2B44;
		margin-bottom: 12px;
	}

	.survey-help {
		font-size: 0.7rem;
		color: #94a3b8;
		margin-top: 4px;
	}

	.required-mark {
		color: #EF4444;
		margin-left: 2px;
	}

	/* ========== INPUT TEKSTOWY ========== */
	.survey-input {
		width: 100%;
		padding: 12px 16px;
		border: 2px solid #E4E7EC;
		border-radius: 8px;
		font-size: 0.875rem;
		font-family: inherit;
		transition: border-color 0.2s ease, box-shadow 0.2s ease;
		outline: none;
		box-sizing: border-box;
	}

	.survey-input:focus {
		border-color: #0EA5E9;
		box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
	}

	.survey-input::placeholder {
		color: #94a3b8;
	}

	/* ========== TEXTAREA ========== */
	.survey-textarea {
		width: 100%;
		padding: 12px 16px;
		border: 2px solid #E4E7EC;
		border-radius: 8px;
		font-size: 0.875rem;
		font-family: inherit;
		resize: vertical;
		min-height: 100px;
		transition: border-color 0.2s ease, box-shadow 0.2s ease;
		outline: none;
		box-sizing: border-box;
	}

	.survey-textarea:focus {
		border-color: #0EA5E9;
		box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
	}

	/* ========== SELECT (LISTA ROZWIJANA) ========== */
	.survey-select {
		width: 100%;
		padding: 14px 16px;
		border: 2px solid #E4E7EC;
		border-radius: 8px;
		font-size: 0.875rem;
		font-family: inherit;
		background: #fff;
		cursor: pointer;
		appearance: none;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: right 16px center;
		transition: border-color 0.2s ease, box-shadow 0.2s ease;
		outline: none;
		box-sizing: border-box;
	}

	.survey-select:focus {
		border-color: #0EA5E9;
		box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
	}

	/* ========== RADIO BUTTONS (PRZYCISKI) ========== */
	.radio-group {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}

	.radio-btn {
		font-size: 0.75rem;
		font-weight: 600;
		color: #667085;
		padding: 10px 16px;
		border: 2px solid #E4E7EC;
		border-radius: 20px;
		cursor: pointer;
		transition: all 0.2s ease;
		display: flex;
		align-items: center;
		gap: 8px;
		user-select: none;
	}

	.radio-btn:hover {
		border-color: #0EA5E9;
		color: #0EA5E9;
	}

	.radio-btn input[type="radio"] {
		display: none;
	}

	.radio-btn:has(input:checked) {
		border-color: #0EA5E9;
		color: #0EA5E9;
		background: #E5F0FF;
	}

	/* ========== CHECKBOX (WIELOKROTNY WYBÓR) ========== */
	.checkbox-group {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.checkbox-btn {
		font-size: 0.75rem;
		font-weight: 600;
		color: #667085;
		padding: 12px 16px;
		border: 2px solid #E4E7EC;
		border-radius: 8px;
		cursor: pointer;
		transition: all 0.2s ease;
		display: flex;
		align-items: center;
		gap: 10px;
		user-select: none;
	}

	.checkbox-btn:hover {
		border-color: #0EA5E9;
	}

	.checkbox-btn input[type="checkbox"] {
		display: none;
	}

	.checkbox-icon {
		width: 18px;
		height: 18px;
		border: 2px solid #D1D5DB;
		border-radius: 4px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.2s ease;
		flex-shrink: 0;
	}

	.checkbox-btn:has(input:checked) {
		border-color: #0EA5E9;
		background: #E5F0FF;
		color: #0EA5E9;
	}

	.checkbox-btn:has(input:checked) .checkbox-icon {
		background: #0EA5E9;
		border-color: #0EA5E9;
	}

	.checkbox-btn:has(input:checked) .checkbox-icon::after {
		content: '✓';
		color: #fff;
		font-size: 12px;
		font-weight: bold;
	}

	/* ========== RATING (GWIAZDKI - wymagane) ========== */
	.rating-stars {
		display: flex;
		gap: 8px;
		flex-direction: row-reverse;
		justify-content: flex-end;
	}

	.rating-stars input {
		display: none;
	}

	.rating-stars label {
		font-size: 2rem;
		color: #E4E7EC;
		cursor: pointer;
		transition: color 0.2s ease, transform 0.1s ease;
		user-select: none;
	}

	.rating-stars label:hover {
		transform: scale(1.2);
	}

	.rating-stars label:hover,
	.rating-stars label:hover ~ label,
	.rating-stars input:checked ~ label {
		color: #FBBF24;
	}

	.rating-labels {
		display: flex;
		justify-content: space-between;
		font-size: 0.7rem;
		color: #94a3b8;
		margin-top: 4px;
		padding: 0 4px;
	}

	/* ========== NPS (GWIAZDKI - opcjonalne, można odznaczyć) ========== */
	.nps-stars {
		display: flex;
		gap: 8px;
		flex-direction: row-reverse;
		justify-content: flex-end;
	}

	.nps-stars input {
		display: none;
	}

	.nps-stars label {
		font-size: 2rem;
		color: #E4E7EC;
		cursor: pointer;
		transition: color 0.2s ease;
		user-select: none;
	}

	/* Zaznaczone gwiazdki */
	.nps-stars input:checked ~ label {
		color: #FBBF24;
	}

	/* Hover TYLKO gdy nic nie jest zaznaczone */
	.nps-stars:not(:has(input:checked)) label:hover,
	.nps-stars:not(:has(input:checked)) label:hover ~ label {
		color: #FCD34D;
		transform: scale(1.2);
	}

	.nps-labels {
		display: flex;
		justify-content: space-between;
		font-size: 0.75rem;
		margin-top: 8px;
		padding: 0 4px;
	}

	.nps-label-left {
		color: #EF4444;
		font-weight: 600;
	}

	.nps-label-right {
		color: #10B981;
		font-weight: 600;
	}

	/* ========== STOPKA ========== */
	.survey-footer {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 32px;
		padding-top: 16px;
		border-top: 1px solid #E4E7EC;
	}

	.survey-progress {
		font-size: 0.75rem;
		font-weight: 600;
		color: #667085;
	}

	.btn-submit {
		background-color: #0EA5E9;
		color: #fff;
		padding: 14px 32px;
		border: none;
		border-radius: 8px;
		font-weight: 600;
		font-size: 0.875rem;
		cursor: pointer;
		transition: all 0.2s ease;
		font-family: inherit;
	}

	.btn-submit:hover {
		background-color: #0c8ec4;
		transform: translateY(-2px);
		box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
	}

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

	/* ========== KOMUNIKATY ========== */
	.alert {
		padding: 12px 16px;
		border-radius: 8px;
		margin-bottom: 16px;
		font-size: 0.875rem;
		font-weight: 500;
	}

	.alert-error {
		background: #FEE2E2;
		color: #991B1B;
		border: 1px solid #FCA5A5;
	}

	.nps-zero-label {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.2em;
		height: 1.2em;
		font-size: 0.9rem;
		color: #98a2b3;
		cursor: pointer;
		margin-right: 4px;
	}
	.nps-zero-input:checked + .nps-zero-label {
		color: var(--bs-danger, #dc3545);
		font-weight: 700;
	}

	/* ========== RESPONSYWNOŚĆ ========== */
	@media (max-width: 768px) {
		.survey-container {
			/*margin: 16px;*/
			padding: 20px;
			border-radius: 12px;
		}

		.radio-group {
			flex-direction: column;
		}
		.radio-group.nps-group {
			flex-direction: row;
		}

		.radio-btn {
			width: 100%;
			justify-content: center;
		}

		.nps-group .radio-btn {
			width: 10%;
		}

		.btn-submit {
			width: 100%;
			text-align: center;
		}

		.survey-footer {
			flex-direction: column;
			gap: 12px;
		}
	}

