.cof-box {
	max-width: 640px;
	margin: 40px auto;
	padding: 30px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 12px;
	font-family: inherit;
}

.cof-progress {
	margin-bottom: 20px;
	font-weight: bold;
}

.cof-progress-track {
	background: #eee;
	border-radius: 10px;
	height: 8px;
	margin-top: 8px;
	overflow: hidden;
}

#cof-progress-bar {
	background: #f59e0b;
	height: 100%;
	width: 16.66%;
	transition: width 0.3s ease;
}

.cof-step {
	display: none;
}

.cof-step.active {
	display: block;
	animation: cof-fade 0.25s ease;
}

@keyframes cof-fade {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

.cof-box input[type="text"],
.cof-box input[type="tel"],
.cof-box input[type="email"],
.cof-box textarea,
.cof-box select {
	width: 100%;
	padding: 12px;
	margin: 8px 0;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 15px;
}

.cof-condition-wheel {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin: 15px 0;
}

.level-box {
	border: 1px solid #ddd;
	padding: 15px;
	border-radius: 8px;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s ease;
}

.level-box.active {
	background: #f59e0b;
	color: #fff;
	border-color: #f59e0b;
}

.cof-consent {
	display: block;
	font-size: 13px;
	margin: 10px 0;
}

.cof-btn {
	padding: 12px 25px;
	background: #f59e0b;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	margin: 5px 5px 0 0;
	font-weight: bold;
}

.cof-btn.cof-back {
	background: #6b7280;
}

#cof-message h3 {
	color: #16a34a;
}

@media (max-width: 480px) {
	.cof-condition-wheel {
		grid-template-columns: 1fr;
	}
}
