.setr-request {
	--setr-navy: #102a43;
	--setr-blue: #1769aa;
	--setr-gold: #e7b416;
	--setr-border: #d9e2ec;
	--setr-muted: #52606d;
	--setr-success: #147d43;
	--setr-error: #b42318;
	box-sizing: border-box;
	width: 100%;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--setr-border);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(16, 42, 67, 0.1);
	color: var(--setr-navy);
}

.setr-request *,
.setr-request *::before,
.setr-request *::after {
	box-sizing: border-box;
}

.setr-request__heading {
	margin: 0 0 1.25rem;
}

.setr-request__title {
	margin: 0;
	color: var(--setr-navy);
	font-size: clamp(1.45rem, 3vw, 2rem);
	line-height: 1.15;
}

.setr-request__description {
	margin: 0.5rem 0 0;
	color: var(--setr-muted);
	font-size: 1rem;
	line-height: 1.5;
}

.setr-request__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.setr-field {
	margin: 0 0 1rem;
}

.setr-field label {
	display: block;
	margin: 0 0 0.4rem;
	color: var(--setr-navy);
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1.3;
}

.setr-field input,
.setr-field textarea {
	display: block;
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 0.7rem 0.8rem;
	border: 1px solid #9fb3c8;
	border-radius: 6px;
	background: #fff;
	color: #102a43;
	font: inherit;
	line-height: 1.4;
	transition: border-color 120ms ease, box-shadow 120ms ease;
}

.setr-field textarea {
	min-height: 108px;
	resize: vertical;
}

.setr-field input:focus,
.setr-field textarea:focus {
	border-color: var(--setr-blue);
	outline: none;
	box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.18);
}

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

.setr-recaptcha {
	min-height: 78px;
	margin: 0.25rem 0 0.75rem;
}

.setr-request__consent {
	margin: 0 0 1rem;
	color: var(--setr-muted);
	font-size: 0.76rem;
	line-height: 1.45;
}

.setr-request__consent a {
	color: var(--setr-blue);
	text-decoration: underline;
}

.setr-request__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 0.75rem 1.25rem;
	border: 0;
	border-radius: 6px;
	background: var(--setr-gold);
	color: var(--setr-navy);
	font: inherit;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition: filter 120ms ease, transform 120ms ease;
}

.setr-request__button:hover {
	filter: brightness(0.96);
	transform: translateY(-1px);
}

.setr-request__button:focus-visible {
	outline: 3px solid rgba(23, 105, 170, 0.45);
	outline-offset: 3px;
}

.setr-request__button:disabled {
	cursor: wait;
	filter: grayscale(0.2);
	opacity: 0.75;
	transform: none;
}

.setr-notice {
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	border-left: 4px solid;
	border-radius: 4px;
	font-weight: 650;
	line-height: 1.45;
}

.setr-notice--success {
	border-color: var(--setr-success);
	background: #ecfdf3;
	color: #086c3a;
}

.setr-notice--error {
	border-color: var(--setr-error);
	background: #fef3f2;
	color: #912018;
}

@media (max-width: 640px) {
	.setr-request__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.setr-request {
		padding: 1.15rem;
		border-radius: 8px;
	}

	.setr-recaptcha {
		overflow-x: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.setr-request *,
	.setr-request *::before,
	.setr-request *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
