.fc-embed-page {
	margin: 0;
	padding: 16px;
	background: transparent;
}

.fc-funnel {
	max-width: 760px;
	margin: 0 auto;
	padding: 28px;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
	border: 1px solid #e2e8f0;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
	color: #0f172a;
	font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
	line-height: 1.5;
}

.fc-intro {
	margin-bottom: 18px;
	color: #334155;
	font-size: 1rem;
	line-height: 1.65;
}

.fc-intro p {
	margin: 0;
}

.fc-step {
	display: none;
}

.fc-step.is-active {
	display: block;
}

.fc-step h3 {
	margin: 0 0 10px;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: #0f172a;
}

.fc-description {
	margin: 0 0 16px;
	color: #475569;
	font-size: 0.98rem;
	line-height: 1.6;
}

.fc-step-progress {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
}

.fc-step-progress-wrap {
	display: flex;
	justify-content: center;
	margin-top: 14px;
}

.fc-step-progress-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #cbd5e1;
	transition: transform 0.18s ease, background-color 0.18s ease;
}

.fc-step-progress-dot.is-complete {
	background: #99f6e4;
}

.fc-step-progress-dot.is-active {
	background: #0f766e;
	transform: scale(1.2);
}

.fc-form label,
.fc-form legend {
	display: block;
	margin-bottom: 10px;
	color: #1e293b;
}

.fc-form label strong,
.fc-form legend strong {
	display: block;
	margin-bottom: 8px;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.4;
	color: #0f172a;
}

.fc-required {
	color: #b91c1c;
	font-weight: 700;
}

.fc-form input[type="text"],
.fc-form input[type="email"],
.fc-form input[type="tel"],
.fc-form input[type="number"],
.fc-form textarea,
.fc-form select {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding: 12px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	font-size: 16px;
	line-height: 1.5;
	background: #fff;
	color: #0f172a;
}

.fc-form textarea {
	min-height: 120px;
	resize: vertical;
}

.fc-form input::placeholder,
.fc-form textarea::placeholder {
	color: #94a3b8;
}

.fc-group-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	align-items: start;
}

.fc-group-fields > label {
	min-width: 0;
	margin-bottom: 0;
}

.fc-choice-group {
	border: 0;
	padding: 0;
	margin: 0;
}

.fc-choice-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	margin-bottom: 10px;
	background: #fff;
	border: 1px solid #dbe4ee;
	border-radius: 12px;
	color: #0f172a;
	line-height: 1.45;
}

.fc-choice-card span {
	font-size: 0.98rem;
	font-weight: 500;
}

.fc-actions {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: flex-end;
	margin-top: 18px;
}

.fc-button {
	padding: 12px 18px;
	min-height: 48px;
	border: 0;
	border-radius: 12px;
	background: #0f766e;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	line-height: 1.2;
}

.fc-button-secondary {
	background: #334155;
}

.fc-validation {
	margin-right: auto;
	color: #b91c1c;
	font-size: 0.95rem;
	line-height: 1.5;
}

.fc-message {
	padding: 14px 16px;
	margin-bottom: 18px;
	border-radius: 12px;
	font-size: 0.98rem;
	line-height: 1.6;
}

.fc-success {
	background: #dcfce7;
	color: #166534;
}

.fc-error {
	background: #fee2e2;
	color: #991b1b;
}

@media (max-width: 767px) {
	.fc-embed-page {
		padding: 8px;
	}

	.fc-funnel {
		padding: 18px;
	}

	.fc-group-fields {
		grid-template-columns: 1fr;
	}

	.fc-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.fc-button {
		width: 100%;
		min-height: 54px;
		padding: 14px 18px;
		font-size: 17px;
	}
}
