.nbrf-card {
	width: min(820px, 100%);
	margin: 34px auto 28px;
	padding: clamp(24px, 4vw, 38px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: #fff;
	color: #242424;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
	text-align: left;
}

.nbrf-card *,
.nbrf-card *::before,
.nbrf-card *::after {
	box-sizing: border-box;
}

.nbrf-card__heading {
	margin-bottom: 24px;
	text-align: center;
}

.nbrf-card__heading h3 {
	margin: 0 0 10px;
	color: #202020;
	font-size: clamp(1.45rem, 3vw, 2rem);
	line-height: 1.2;
}

.nbrf-card__heading p {
	max-width: 680px;
	margin: 0 auto;
	color: #505050;
	font-size: 1rem;
	line-height: 1.55;
}

.nbrf-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.nbrf-field {
	margin-bottom: 18px;
}

.nbrf-field label {
	display: block;
	margin-bottom: 7px;
	color: #222;
	font-size: 0.95rem;
	font-weight: 750;
}

.nbrf-field input,
.nbrf-field textarea {
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid #a5a5a5;
	border-radius: 6px;
	background: #fff;
	color: #222;
	font: inherit;
	line-height: 1.4;
}

.nbrf-field textarea {
	min-height: 130px;
	resize: vertical;
}

.nbrf-field input:focus,
.nbrf-field textarea:focus {
	border-color: #e85b0b;
	outline: 3px solid rgba(232, 91, 11, 0.18);
	outline-offset: 1px;
}

.nbrf-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 2px 0 20px;
	color: #444;
	font-size: 0.91rem;
	line-height: 1.5;
}

.nbrf-consent input {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: #e85b0b;
}

.nbrf-consent a {
	color: #843709;
	font-weight: 700;
	text-decoration: underline;
}

.nbrf-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.nbrf-submit {
	min-height: 54px;
	padding: 14px 22px;
	border: 0;
	border-radius: 6px;
	background: #e85b0b;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 850;
	letter-spacing: 0.01em;
}

.nbrf-submit:hover,
.nbrf-submit:focus-visible {
	background: #c84908;
}

.nbrf-submit:focus-visible {
	outline: 3px solid rgba(232, 91, 11, 0.28);
	outline-offset: 3px;
}

.nbrf-submit:disabled {
	cursor: wait;
	opacity: 0.65;
}

.nbrf-required {
	margin: 0;
	color: #606060;
	font-size: 0.85rem;
}

.nbrf-status {
	min-height: 0;
	margin-top: 18px;
	padding: 0;
	border-radius: 6px;
	font-weight: 700;
	line-height: 1.5;
}

.nbrf-status--success,
.nbrf-status--error {
	padding: 13px 15px;
}

.nbrf-status--success {
	border: 1px solid #9bc8a9;
	background: #edf8f0;
	color: #175b2f;
}

.nbrf-status--error {
	border: 1px solid #dcaaa5;
	background: #fff0ee;
	color: #84231a;
}

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

@media (max-width: 680px) {
	.nbrf-card {
		margin-top: 26px;
		padding: 22px 17px;
	}

	.nbrf-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.nbrf-form__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.nbrf-submit {
		width: 100%;
	}
}
