.scout-native-form,
.scout-native-form * {
	box-sizing: border-box;
}

.scout-native-form {
	position: relative;
	color: #17202a;
}

.scout-native-form__inner {
	--scout-form-width: 430px;
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.scout-native-form__accent {
	width: 52px;
	height: 4px;
	margin-bottom: 22px;
	background: #f2c500;
}

.scout-native-form__eyebrow {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
}

.scout-native-form__copy {
	max-width: 540px;
}

.scout-native-form__copy h2 {
	margin: 0 0 22px;
	font-size: clamp(44px, 5vw, 68px);
	font-weight: 300;
	line-height: 1.02;
}

.scout-native-form__copy p {
	margin: 0;
	max-width: 520px;
	font-size: 17px;
	line-height: 1.55;
}

.scout-native-form__card {
	max-width: var(--scout-form-width);
	padding: 26px 30px 22px;
	background: #f7f7f7;
	color: #17202a;
	border-radius: 7px;
	box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.scout-native-form__card h3 {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 500;
}

.scout-native-form__card > p {
	margin: 0 0 22px;
	color: #5d6670;
	font-size: 13px;
	line-height: 1.5;
}

.scout-native-form__form {
	display: grid;
	gap: 10px;
}

.scout-native-form__fields {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 10px;
}

.scout-native-form__field,
.scout-native-form__section-heading {
	grid-column: span var(--scout-field-span, 12);
	min-width: 0;
}

.scout-native-form__section-heading {
	padding: 12px 2px 5px;
	border-bottom: 1px solid #ddd;
	color: #17202a;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.scout-native-form__field {
	display: block;
	padding: 10px 14px;
	background: #fff;
	border: 1px solid #e2e2e2;
}

.scout-native-form__field span {
	display: block;
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 600;
}

.scout-native-form__field input,
.scout-native-form__field textarea,
.scout-native-form__field select {
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: #17202a;
	font: inherit;
	font-size: 12px;
}

.scout-native-form__field textarea {
	min-height: 100px;
	resize: vertical;
}

.scout-native-form__submit {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: 100%;
	padding: 12px 18px;
	border: 0;
	background: #f2c500;
	color: #06172a;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	cursor: pointer;
}

.scout-native-form__status {
	min-height: 18px;
	font-size: 12px;
}

.scout-native-form__status.is-success {
	color: #1f6f43;
}

.scout-native-form__status.is-error {
	color: #a12626;
}

.scout-native-form__secure {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
	color: #969ca2;
	font-size: 10px;
}

.scout-native-form__lock-icon--svg {
	display: inline-block;
	width: 12px;
	height: 12px;
	background-color: #969ca2;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	flex: 0 0 auto;
}

.scout-native-form__lock-icon--fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #969ca2;
	font-size: 12px;
	line-height: 1;
}

/* Preset 1: Background image + form */
.scout-native-form--background-form {
	min-height: 620px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	color: #fff;
	isolation: isolate;
}

.scout-native-form--background-form .scout-native-form__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(6,23,42,.72), rgba(6,23,42,.2));
	opacity: .48;
}

.scout-native-form--background-form .scout-native-form__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--scout-form-width);
	gap: 70px;
	align-items: center;
}

.scout-native-form--background-form .scout-native-form__copy h2,
.scout-native-form--background-form .scout-native-form__copy p {
	color: #fff;
}

.scout-native-form--background-form .scout-native-form__copy p {
	color: rgba(255,255,255,.9);
}

/* Preset 2: Split contact + form */
.scout-native-form--split-contact {
	padding: 90px 0;
	background: #fff;
}

.scout-native-form--split-contact .scout-native-form__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--scout-form-width);
	gap: 80px;
	align-items: center;
}

.scout-native-form--split-contact .scout-native-form__copy h2 {
	color: #17202a;
}

.scout-native-form--split-contact .scout-native-form__copy p {
	color: #4f5964;
}

.scout-native-form__copy-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.scout-native-form__copy-primary,
.scout-native-form__copy-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 46px;
	padding: 12px 22px;
	text-decoration: none;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
}

.scout-native-form__copy-primary {
	background: #f2c500;
	color: #06172a;
}

.scout-native-form__copy-secondary {
	border: 1px solid #17202a;
	color: #17202a;
}


/* Preset 3: Dark inline bar */
.scout-native-form--dark-bar {
	padding: 46px 0;
	background: #f4f2ef;
}

.scout-native-form--dark-bar .scout-native-form__inner {
	max-width: 1420px;
}

.scout-native-form--dark-bar .scout-native-form__card {
	display: grid;
	grid-template-columns: 340px minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	max-width: none;
	padding: 30px 34px;
	background: #06172a;
	color: #fff;
	border-radius: 7px;
	box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.scout-native-form__bar-copy h3 {
	margin: 0;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
}

.scout-native-form__bar-copy .scout-native-form__accent {
	width: 42px;
	height: 3px;
	margin: 14px 0 18px;
}

.scout-native-form__bar-copy p {
	margin: 0;
	color: rgba(255,255,255,.82);
	font-size: 15px;
	line-height: 1.55;
}

.scout-native-form--dark-bar .scout-native-form__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 270px;
	gap: 20px;
	align-items: center;
}

.scout-native-form--dark-bar .scout-native-form__fields {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 12px;
}

.scout-native-form--dark-bar .scout-native-form__field {
	padding: 13px 16px;
	background: transparent;
	border: 1px solid rgba(255,255,255,.45);
	color: #fff;
}


.scout-native-form--dark-bar .scout-native-form__field span {
	display: none;
}

.scout-native-form--dark-bar .scout-native-form__field input,
.scout-native-form--dark-bar .scout-native-form__field textarea,
.scout-native-form--dark-bar .scout-native-form__field select {
	color: #fff;
	font-size: 14px;
}

.scout-native-form--dark-bar .scout-native-form__field input::placeholder,
.scout-native-form--dark-bar .scout-native-form__field textarea::placeholder {
	color: rgba(255,255,255,.75);
}

.scout-native-form__submit-wrap {
	display: grid;
	gap: 14px;
}

.scout-native-form__phone {
	display: grid;
	gap: 4px;
	padding-left: 2px;
}

.scout-native-form__phone strong {
	color: #fff;
	font-size: 17px;
}

.scout-native-form__phone span {
	color: rgba(255,255,255,.7);
	font-size: 13px;
}

/* Preset 4: White card only */
.scout-native-form--white-card {
	padding: 60px 0;
	background: #fff;
}

.scout-native-form--white-card .scout-native-form__card {
	margin: 0 auto;
}

@media (max-width: 980px) {
	.scout-native-form--background-form .scout-native-form__inner,
	.scout-native-form--split-contact .scout-native-form__inner {
		grid-template-columns: 1fr;
		padding: 70px 0;
	}

	.scout-native-form--dark-bar .scout-native-form__card {
		grid-template-columns: 1fr;
	}

	.scout-native-form--dark-bar .scout-native-form__form {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.scout-native-form__inner {
		width: calc(100% - 32px);
	}

	.scout-native-form__copy h2 {
		font-size: 46px;
	}

	.scout-native-form__card {
		padding: 30px 22px 24px;
	}

	.scout-native-form--split-contact .scout-native-form__fields,
	.scout-native-form--dark-bar .scout-native-form__fields {
		grid-template-columns: 1fr;
	}

	.scout-native-form--split-contact .scout-native-form__field,
	.scout-native-form--dark-bar .scout-native-form__field {
		grid-column: auto !important;
	}

	.scout-native-form--dark-bar .scout-native-form__card {
		padding: 28px 22px;
	}
}

.scout-native-form { padding: 48px 0; }


/* v3.4.0 flexible form builder */
.scout-native-form--dark-bar .scout-native-form__section-heading {
	border-bottom-color: rgba(255,255,255,.3);
	color: #fff;
}

@media (max-width: 767px) {
	.scout-native-form__field,
	.scout-native-form__section-heading {
		grid-column: 1 / -1 !important;
	}
}
