/* ==========================================================================
   Baby Name Lead â€” 100% screenshot clone
   Navy #0A1B44 Â· Magenta #E91E63 Â· Form blush #FFF5F7
   ========================================================================== */

.bnl-wrap {
	--bn-navy: #0a1b44;
	--bn-pink: #e91e63;
	--bn-pink-deep: #d81b60;
	--bn-blush: #fff5f7;
	/* --bn-bg: #fff9fa; */
	--bn-line: #ebe3e7;
	--bn-muted: #8a8494;
	--bn-sans: "Poppins", "Helvetica Neue", Arial, sans-serif;

	box-sizing: border-box;
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 28px 24px 64px;
	font-family: var(--bn-sans);
	color: var(--bn-navy);
	background: var(--bn-bg);
}

.bnl-wrap *,
.bnl-wrap *::before,
.bnl-wrap *::after {
	box-sizing: border-box;
}

.bnl-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.bnl-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
	gap: 22px;
	align-items: stretch;
}

/* â€”â€” Left form card â€”â€” */
.bnl-form-card {
	background: var(--bn-blush);
	border: 1px solid #f0dde4;
	border-radius: 22px;
	padding: 20px;
	box-shadow: 0 10px 28px rgba(10, 27, 68, 0.04);
}

.bnl-form-head {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 22px;
}

.bnl-form-head__icon {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--bn-pink);
	display: inline-flex;
	line-height: 0;
}

.bnl-title {
	margin: 0 0 6px;
	font-size: clamp(1.35rem, 2vw, 1.65rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--bn-navy);
}

.bnl-sub {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--bn-navy);
}

.bnl-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bnl-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.bnl-row--city {
	grid-template-columns: 1.15fr 1.15fr 0.7fr;
}

.bnl-field {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.bnl-field label {
	font-size: 13px;
	font-weight: 700;
	color: var(--bn-navy);
	margin-bottom: 0px;
}

.bnl-field input,
.bnl-field .bnl-select {
	width: 100%;
	height: 38px;
	padding: 0 12px;
	border: 1px solid #d9d5dc;
	border-radius: 6px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	color: var(--bn-navy);
	background: #fff;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bnl-field .bnl-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230a1b44' d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
	cursor: pointer;
}

.bnl-field input::placeholder,
.bnl-field .bnl-select:invalid {
	color: #9aa0b0;
}

.bnl-field input:focus,
.bnl-field .bnl-select:focus {
	outline: none;
	border-color: var(--bn-pink);
	box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.bnl-msg {
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 13px;
	line-height: 1.45;
}

.bnl-msg.is-error {
	background: #fff0f3;
	color: #b42318;
	border: 1px solid #f3c4c4;
}

.bnl-msg.is-ok {
	background: #ecfdf3;
	color: #027a48;
	border: 1px solid #a6f4c5;
}

.bnl-submit {
	margin-top: 4px;
	width: 100%;
	height: 52px;
	padding: 0 20px;
	border: none;
	border-radius: 999px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	background: var(--bn-pink);
	box-shadow: 0 8px 20px rgba(233, 30, 99, 0.28);
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.bnl-submit:hover {
	background: var(--bn-pink-deep);
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(233, 30, 99, 0.34);
}

.bnl-submit:disabled {
	opacity: 0.7;
	cursor: wait;
	transform: none;
}

.bnl-submit__arrow {
	display: inline-block;
	margin-left: 6px;
	font-weight: 400;
	font-size: 1.15em;
	line-height: 1;
}

.bnl-privacy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 4px 0 0;
	font-size: 15px;
	font-weight: 500;
	color: #000000;
	text-align: center;
}

.bnl-privacy__icon {
	display: inline-flex;
	color: var(--bn-muted);
	line-height: 0;
}

/* â€”â€” Right pricing card â€”â€” */
.bnl-pricing-card {
	background: #fff;
	border: 1px solid var(--bn-line);
	border-radius: 22px;
	padding: 55px 25px 55px;
	box-shadow: 0 10px 28px rgba(10, 27, 68, 0.04);
	display: flex;
	flex-direction: column;
	align-self: center;
	height: 100%;
}

.bnl-pricing-card__title {
	margin: 0 0 45px;
	font-size: clamp(1.25rem, 1.8vw, 1.5rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--bn-navy);
	text-align: center;
}

.bnl-pricing-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	flex: 1;
	align-items: start;
}

.bnl-tier {
	padding: 0 18px;
	text-align: center;
}

.bnl-tier:first-child {
	border-right: 1px solid #e5e1e8;
	padding-left: 4px;
}

.bnl-tier:last-child {
	padding-right: 4px;
}

.bnl-pricing-cols--single {
	grid-template-columns: 1fr;
	justify-items: center;
}

.bnl-pricing-cols--single .bnl-tier,
.bnl-pricing-cols--single .bnl-tier:first-child,
.bnl-pricing-cols--single .bnl-tier:last-child {
	border: none;
	padding: 0 18px;
	max-width: 280px;
}

.bnl-tier__icon {
	display: inline-flex;
	margin-bottom: 12px;
	line-height: 0;
}

.bnl-tier__label {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 700;
	color: var(--bn-navy);
}

.bnl-tier__price {
	margin: 0 0 10px;
	font-size: clamp(1.75rem, 2.4vw, 3.15rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--bn-pink);
}

.bnl-tier__desc {
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--bn-navy);
}

.bnl-pricing-card__note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 28px 0 0;
	padding-top: 4px;
	font-size: 16px;
	font-weight: 500;
	color: var(--bn-navy);
}

.bnl-pricing-card__heart {
	display: inline-flex;
	color: var(--bn-pink);
	line-height: 0;
	flex: 0 0 auto;
}

@media (max-width: 900px) {
	.bnl-grid {
		grid-template-columns: 1fr;
	}

	.bnl-pricing-card__title {
		text-align: left;
	}
}

@media (max-width: 560px) {
	.bnl-wrap {
		padding: 20px 14px 48px;
	}

	.bnl-form-card,
	.bnl-pricing-card {
		padding: 22px 18px 20px;
		border-radius: 18px;
	}

	.bnl-row,
	.bnl-row--city {
		grid-template-columns: 1fr;
	}

	.bnl-pricing-cols {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.bnl-tier:first-child {
		border-right: none;
		border-bottom: 1px solid #e5e1e8;
		padding: 0 0 20px;
	}

	.bnl-tier:last-child {
		padding: 0;
	}

	.bnl-pricing-cols--single {
		grid-template-columns: 1fr;
	}

	.bnl-pricing-cols--single .bnl-tier,
	.bnl-pricing-cols--single .bnl-tier:first-child,
	.bnl-pricing-cols--single .bnl-tier:last-child {
		border: none;
		padding: 0;
		max-width: none;
	}
}