.growth-lead-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
}

.growth-lead-modal.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 16px;
	overflow-y: auto;
}

.growth-lead-modal__overlay {
	position: fixed;
	inset: 0;
	background: rgba(17, 24, 39, 0.52);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	pointer-events: none;
}

.growth-lead-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
	max-height: calc(100dvh - 40px);
	overflow-x: hidden;
	overflow-y: auto;
	background: #ffffff;
	border-radius: 24px;
	padding: 0 44px 36px 40px;
	box-shadow: 0 24px 64px rgba(17, 24, 39, 0.2);
	-webkit-overflow-scrolling: touch;
}

.growth-lead-modal__header {
	width: 100%;
	padding: 0;
	text-align: center;
	flex-shrink: 0;
	line-height: 0;
}

.growth-lead-modal__headerImage {
	display: block;
	width: min(100%, 620px);
	max-width: 100%;
	margin: 0 auto -36px;
}

.growth-lead-modal__close {
	position: absolute;
	top: 18px;
	right: 20px;
	z-index: 3;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 0;
	background: transparent;
	color: #111827;
	font-size: 26px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.growth-lead-modal__close:hover {
	color: #4b5563;
}

.growth-lead-modal__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
	margin-top: 0;
}

.growth-lead-modal__info {
	padding-right: 36px;
	border-right: 1px solid #e8eaef;
	display: flex;
	flex-direction: column;
}

.growth-lead-modal__formWrap {
	padding-left: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
}

.growth-lead-modal__title {
	margin: 0 0 12px;
	font-family: 'Nunito', sans-serif;
	font-size: clamp(24px, 2.8vw, 30px);
	font-weight: 800;
	line-height: 1.22;
	color: #111827;
	letter-spacing: -0.02em;
}

.growth-lead-modal__titleAccent {
	background: linear-gradient(90deg, #1C48B2 0%, #8b5cf6 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.growth-lead-modal__subtitle {
	margin: 0 0 22px;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 15px;
	line-height: 1.55;
	color: #6b7280;
	max-width: 36ch;
}

.growth-lead-modal__features {
	list-style: none;
	margin: 0 0 auto;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.growth-lead-modal__features li {
	position: relative;
	padding-left: 30px;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #374151;
	line-height: 1.4;
}

.growth-lead-modal__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: transparent;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='8.25' stroke='%231C48B2' stroke-width='1.5'/%3E%3Cpath d='M6.5 10.2l2 2 4.2-4.3' stroke='%231C48B2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px 20px;
}

.growth-lead-modal__trust {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 12px;
	background: #f0f2ff;
	margin-top: 24px;
}

.growth-lead-modal__trustIcon {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	color: #1C48B2;
}

.growth-lead-modal__trustIcon svg {
	width: 31px;
	height: 39px;
	display: block;
}

.growth-lead-modal__trust p {
	margin: 0;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 12px;
	line-height: 1.5;
	color: #4b5563;
}

.growth-lead-modal__form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
}

.growth-lead-modal__field {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 16px;
	min-height: 50px;
	border-radius: 10px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.growth-lead-modal__field:focus-within {
	border-color: #a5b4fc;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.growth-lead-modal__fieldIcon {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: #9ca3af;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.growth-lead-modal__fieldIcon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.growth-lead-modal__field input {
	flex: 1;
	min-width: 0;
	border: none;
	background: transparent;
	padding: 14px 0;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
	color: #111827;
	outline: none;
}

.growth-lead-modal__field input::placeholder {
	color: #9ca3af;
}

.growth-lead-modal__status {
	margin: 0;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-align: center;
}

.growth-lead-modal__status.is-error {
	color: #dc2626;
}

.growth-lead-toast {
	position: fixed;
	top: 30px;
	right: max(20px, env(safe-area-inset-right, 0px));
	left: auto;
	z-index: 100001;
	display: none;
	align-items: center;
	gap: 8px;
	width: min(300px, calc(100vw - 24px));
	max-width: calc(100vw - 24px);
	padding: 10px 12px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 8px 22px rgba(17, 24, 39, 0.16);
	pointer-events: auto;
}

.growth-lead-toast.is-visible {
	display: flex;
}

.growth-lead-toast__icon {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.growth-lead-toast__icon svg {
	width: 28px;
	height: 28px;
	display: block;
}

.growth-lead-toast__text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.growth-lead-toast__title {
	font-family: 'Nunito', sans-serif;
	font-size: 13px;
	font-weight: 800;
	color: #111827;
	line-height: 1.2;
}

.growth-lead-toast__message {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #6b7280;
	line-height: 1.3;
}

.growth-lead-toast__close {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	color: #9ca3af;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.growth-lead-toast__close:hover {
	color: #6b7280;
}

.growth-lead-modal__submit {
	width: 100%;
	margin-top: 6px;
	padding: 15px 20px;
	border: none;
	border-radius: 12px;
	background: linear-gradient(to right, #1C48B2, #8873d7) !important;
	color: #ffffff;
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 0.01em;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: filter 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 8px 20px rgba(59, 130, 246, 0.28);
}

.growth-lead-modal__submit img {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	display: block;
	transition: transform 0.3s ease;
	transform: rotate(-45deg);
}

.growth-lead-modal__submit:hover {
	filter: brightness(1.04);
	transform: translateY(-1px);
}

.growth-lead-modal__submit:hover img {
	transform: rotate(0deg);
}

.growth-lead-modal__submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.growth-lead-modal__submit:disabled:hover img {
	transform: rotate(-45deg);
}

.growth-lead-modal__privacy {
	margin: 12px 0 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 8px;
	width: 100%;
	text-align: left;
}

.growth-lead-modal__privacyIcon {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-top: -1px;
	color: #6b7280;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.growth-lead-modal__privacyIcon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.growth-lead-modal__privacyText {
	flex: 1;
	min-width: 0;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 11px;
	font-weight: 400;
	color: #6b7280;
	line-height: 1.45;
}

.growth-lead-modal__partners {
	width: 100%;
	
	padding-top: 20px;
}

.growth-lead-modal__partnersHeading {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	margin-bottom: 16px;
}

.growth-lead-modal__partnersLine {
	flex: 1;
	min-width: 0;
	height: 1px;
	background: #d8dee8;
}

.growth-lead-modal__partnersLabel {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-shrink: 0;
	margin: 0;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-align: center;
	color: #6b7280;
	white-space: nowrap;
}

.growth-lead-modal__partnersDot {
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #1c48b2;
}

.growth-lead-modal__partnersLogos {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	align-items: stretch;
}

.growth-lead-modal__partnersLogos li {
	display: block;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.growth-lead-modal__partnerCard {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 10px 8px;
	border-radius: 10px;
	background: #ffffff;
	border: 1px solid #eef0f4;
	box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
}

.growth-lead-modal__partnerCard img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 32px;
	object-fit: contain;
}

.growth-lead-modal__partnerLogo--liberty {
	width: 100%;
	min-width: 72px;
	max-width: none;
	max-height: 48px;
	transform: scale(2);
	transform-origin: center center;
}

@media (max-width: 767px) {
	.growth-lead-modal.is-open {
		padding: 12px;
		align-items: center;
	}

	.growth-lead-modal__dialog {
		width: 100%;
		padding: 0 20px 24px;
		border-radius: 20px;
		max-height: calc(95dvh - 24px);
	}

	.growth-lead-modal__header {
		padding: 0;
	}

	.growth-lead-modal__headerImage {
		width: min(100%, 340px);
		margin-bottom: -18px;
	}

	.growth-lead-modal__grid {
		margin-top: 0;
	}

	.growth-lead-modal__close {
		top: 14px;
		right: 14px;
	}

	.growth-lead-modal__grid {
		grid-template-columns: 1fr;
	}

	.growth-lead-modal__info {
		padding-right: 0;
		padding-bottom: 24px;
		border-right: none;
		border-bottom: 1px solid #e8eaef;
	}

	.growth-lead-modal__formWrap {
		padding-left: 0;
		padding-top: 24px;
	}

	.growth-lead-modal__subtitle {
		max-width: none;
	}

	.growth-lead-modal__features {
		margin-bottom: 0;
		align-items: flex-start;
	}

	.growth-lead-modal__trust {
		margin-top: 20px;
	}

	.growth-lead-modal__privacy {
		margin-top: 10px;
		gap: 7px;
	}

	.growth-lead-modal__privacyIcon,
	.growth-lead-modal__privacyIcon svg {
		width: 15px;
		height: 15px;
	}

	.growth-lead-modal__privacyText {
		font-size: 13px;
		line-height: 1.4;
	}

	.growth-lead-modal__partners {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		margin-top: 22px;
		padding-top: 18px;
	}

	.growth-lead-modal__partnersHeading {
		gap: 8px;
		width: 100%;
	}

	.growth-lead-modal__partnersLabel {
		font-size: 9px;
		letter-spacing: 0.08em;
		gap: 7px;
		white-space: normal;
	}

	.growth-lead-modal__partnersDot {
		width: 4px;
		height: 4px;
	}

	.growth-lead-modal__partnersLogos {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px;
		overflow-x: visible;
		padding-bottom: 0;
	}

	.growth-lead-modal__partnersLogos li {
		flex: 1 1 calc(50% - 4px);
		min-width: calc(50% - 4px);
		max-width: calc(50% - 4px);
	}

	.growth-lead-modal__partnersLogos li:last-child:nth-child(5) {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.growth-lead-modal__features {
		align-items: flex-start;
	}

	.growth-lead-modal__privacy {
		justify-content: flex-start;
		text-align: left;
	}
}
