.lead__grid {
    display: grid;
    grid-template-columns: 1.3fr minmax(400px, 1fr);
    gap: clamp(20px, 5vw, 110px);
    align-items: center;
}

.lead__form {
	display: grid;
	gap: 14px;
}

.lead__form-field {
	width: 100%;
}

.lead__form-input {
	width: 100%;
	height: 75px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	outline: none;
}

.lead__form-input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.lead__form-button {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 75px;
	padding: 0 22px;
	border-radius: 10px;
	background: var(--blue-8);
	color: #fff;
	font-weight: 600;
	font-size: 21px;
	transition: background-color 0.2s ease;
}

.lead__form-button:hover {
	background: var(--button-bg-hover);
}

.lead__form-bottom-text {
	font-weight: 400;
	font-size: 12px;
	line-height: 1;
}

.lead__title {
	font-weight: 400;
	font-size: 50px;
	line-height: 1.08;
	color: var(--white);
	margin-bottom: 40px;
}

.lead__title span {
	font-size: 65px;
}

.lead__text {
	font-weight: 400;
	font-size: 24px;
	line-height: 1.2;
	color: var(--white);
}