.form-section-container {
	background-color: #090908;
	margin: 25px 0 0 0;
}

.form-section__wrap {
	background: radial-gradient(circle at 50% 150%, #77D14D 0%, rgba(119, 209, 77, 0.85) 15%, rgba(119, 209, 77, 0.6) 30%, rgba(119, 209, 77, 0.4) 45%, rgba(119, 209, 77, 0.2) 60%, rgba(119, 209, 77, 0.1) 75%, transparent 100%);
	padding: 50px 0;
}

.form-section__block {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.form-section__title {
	display: block;
	position: relative;
	font-family: 'Days One', sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 25px;
}

.form-section__title:after {
	content: '';
	display: block;
	width: 10%;
	margin: 25px auto 0 auto;
	height: 4px;
	border-radius: 15px;
	background: #77d14d;
	transition: all 0.3s ease;
}

.form-section__title:hover:after {
	width: 20%;
}

.form-section__description {
	font-family: "Murecho", sans-serif;
	display: block;
	text-align: center;
	color: #ffffff;
	font-size: 20px;
}

.form-section__form {
	backdrop-filter: blur(24px);
	border: 2px solid rgba(119, 209, 77, 0.3);
	border-radius: 25px;
	padding: 50px 25px;
	background-color: rgba(255, 255, 255, 0.05);
	margin-top: 25px;
}

.form-section__fieldset {
	padding: 0;
	border: none;
}

.form-filds {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 25px;
}

.form-section__input input {
	font-size: 18px;
	color: white;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 15px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	width: 100%;
	height: 50px;
	transition: all 0.3s ease;
}

.form-section__input input:hover,
.form-section__input input:focus,
.form-section__input input:active {
	border-color: #77D14D;
}

/* Помилка валідації (клас додається з JS) */
.form-section__input input.is-invalid {
	border-color: #e04b4b;
}

.form-section__input .field-error {
	margin-top: 6px;
	font-family: "Murecho", sans-serif;
	font-size: 13px;
	color: #ffb4b4;
	text-align: left;
}

.form-section__button {
	background: #77d14d;
	padding: 15px 25px;
	font-family: "Murecho", sans-serif;
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	border-radius: 15px;
	height: 50px;
	line-height: 1;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 10px 15px -3px #5c5c7a33, 0 4px 6px -4px #5c5c7a33;
}

.form-section__button:hover {
	scale: 1.05;
	box-shadow: 0 10px 15px -3px oklab(0.777139 -0.138445 0.128371 / 0.5), 0 4px 6px -4px oklab(0.777139 -0.138445 0.128371 / 0.5);
}

.form-section__button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	scale: 1;
}

.form__policy span {
	display: block;
	text-align: center;
	font-family: "Murecho", sans-serif;
	margin-top: 25px;
	color: #ffffff;
}

.form__policy a {
	font-family: "Murecho", sans-serif;
	color: #77d14d;
}

.form-section__advantages {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 50px;
	text-align: center;
}

.form-section__advantage {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}

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

.form-section__advantage-title {
	font-family: "Murecho", sans-serif;
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.form-section__advantage-text {
	font-family: "Murecho", sans-serif;
	color: #b2b1b1;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.form-section__advantage-icon {
	background-color: #77d14d33;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-section__advantage-icon img {
	width: 32px;
	height: 32px;
}

.consultation-widget__request-form .form-send-status,
.form-section__form .form-send-status {
	display: block;
	margin: 0;
	background: transparent;
}

.consultation-widget__request-form .form-send-status__title,
.consultation-widget__request-form .form-send-status__paragraph {
	color: #000000;
}

@media (min-width: 768px) {
	.form-section__wrap {
		background: radial-gradient(ellipse 100% 100% at 50% 124%, #77D14D 0%, rgba(119, 209, 77, 0.8) 0%, rgba(119, 209, 77, 0.6) 10%, rgba(119, 209, 77, 0.4) 20%, rgba(119, 209, 77, 0.3) 30%, rgba(119, 209, 77, 0.2) 40%, rgba(119, 209, 77, 0.15) 50%, rgba(119, 209, 77, 0.1) 60%, rgba(119, 209, 77, 0.05) 70%, rgba(119, 209, 77, 0.02) 80%, black 100%);
	}

	.form-section__title {
		font-size: 30px;
	}

	.form-section__form {
		padding: 50px;
	}

	.form-section__advantages {
		flex-direction: row;
	}
}

@media (min-width: 992px) {
	.form-section__title {
		font-size: 42px;
	}

	.form-filds {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.form-section__input input {
		padding: 25px;
		height: 100%;
	}

	.form-section__button {
		height: 100%;
	}
}