.home-hero {
	background: white;
}

.home-hero__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 500px;
	overflow: hidden;
}

.home-hero__right img {
	margin-top: 30px;
}

.home-hero__title {
	font-size: 40px;
	font-weight: 800;
	max-width: 800px;
	line-height: 120%;
	margin: 0;
	margin-bottom: 24px;
	position: relative;
}

.home-hero__title::after {
    content: "";
    position: absolute;
    background: url(https://go.yurba.one/assets/images/handwriting-element.svg);
    width: 200px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    left: 120px;
    top: 40px;
}

.home-hero__desc {
	font-size: 18px;
	max-width: 600px;
	font-weight: 500;
	margin-bottom: 32px;
	line-height: 150%;
}

.home-hero__form {
    display: flex;
    max-width: 450px;
    outline: 1px dashed #386af74d;
    outline-offset: 3px;
    border-radius: 15px;
    margin-left: 5px;
}

.home-hero__form .btn {
	border-radius: 0px 15px 15px 0px;
}

.home-hero__form .form-control {
	padding: 17px 25px;
	padding-right: 55px;
	border-radius: 15px 0px 0px 15px;
	background: var(--gl-body-color);
}

.home-hero__form .btn {
	height: auto;
	margin-left: -30px;
	width: 150px;
	font-weight: 700;
	font-size: 18px;
}

.home-whyus {
	padding: 80px 0;
	background: var(--gl-body-color);
}

.home-whyus__inner {
	display: flex;
	gap: 100px;
	justify-content: center;
}

.home-whyus__left {
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-shrink: 0;
    outline: 2px dashed white;
    outline-offset: 5px;
	position: relative;
}

.home-whyus__title {
	font-size: 40px;
	margin: 0;
	line-height: 1;
	margin-bottom: 24px;
	font-weight: 800;
}

.home-whyus__title span {
	color: white;
	background: var(--gl-primary-color);
	padding: 5px 15px;
	border-radius: 15px;
	transform: rotate(-2deg);
	display: inline-block;
}

.home-whyus__items {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.home-whyus__item {
	display: flex;
	gap: 16px;
	font-size: 18px;
	max-width: 500px;
	line-height: 150%;
}

.home-whyus__item::before {
    content: "";
    background: url("https://go.yurba.one/assets/images/go_checkmark.svg");
    background-size: cover;
    width: 40px;
    height: 40px;
    display: block;
    filter: brightness(0) saturate(100%) invert(39%) sepia(51%) saturate(6788%) hue-rotate(219deg) brightness(102%) contrast(94%);
    flex-shrink: 0;
}

.home-whyus__item h3 {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	margin-bottom: 8px;
	line-height: 1;
}

/* Faq */

.home-faq {
	background: white;
	padding: 80px 0;
}

.home-faq__title {
	margin: 0;
	margin-bottom: 32px;
	text-align: center;
	font-size: 40px;
	line-height: 1;
	font-weight: 800;
}

.home-faq__items {
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: center;
	align-items: center;
}

.home-faq__item {
	position: relative;
	padding: 24px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgb(0 0 0 / .1);
	max-width: 900px;
	width: 100%;
}

.home-faq__item:not(:first-child) {
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.home-faq__item-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 20px;
}

.home-faq__item-question::after {
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='33' fill='none'%3E%3Cpath stroke='%234A4A4A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.667' d='M9.334 19.154 16 13.047l6.666 6.107'/%3E%3C/svg%3E");
	cursor: pointer;
	position: relative;
	margin-left: 20px;
	width: 32px;
	min-width: 32px;
	height: 32px;
	transform: rotate(180deg);
	transition: .2s;
}

.home-faq__item.active .home-faq__item-question::after {
	transform: rotate(0deg);
}

.home-faq__item-answer {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: .3s;
}

.home-faq__item.active .home-faq__item-answer {
	padding-top: 8px;
	opacity: 80%;
	max-height: -webkit-fill-available;
}

/* Price */

.home-price {
	padding: 80px 0px;
	position: relative;
	background: var(--gl-body-color);

	margin-top: 80px;
}


.home-price__title {
	margin: 0;
	font-size: 40px;
	line-height: 1;
	font-weight: 800;
	text-align: center;
	margin-bottom: 32px;
}

.home-price__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.home-price__item {
	padding: 40px;
	position: relative;
	background: white;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
}

.home-price__item.active {
    outline: 2px dashed var(--gl-primary-color);
    outline-offset: 5px;
}

.home-price__item-title {
	font-weight: 600;
	margin-bottom: 16px;
	text-align: center;
	font-size: 24px;
}

.home-price__item-value {
	font-size: 45px;
	font-weight: 800;
	position: relative;
	padding-bottom: 40px;
	margin-bottom: 40px;
	line-height: 1;
	text-align: center;
	color: var(--gl-primary-color);
}

.home-price__item-value::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: radial-gradient(#0000001f, transparent);
}

.home-price__item ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 40px;
}

.home-price__item ul li {
	font-weight: 400;
	display: flex;
	gap: 8px;
}

.home-price__item ul li::before {
    content: "";
    background: url(https://go.yurba.one/assets/images/go_checkmark.svg);
    background-size: cover;
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) saturate(100%) invert(39%) sepia(51%) saturate(6788%) hue-rotate(219deg) brightness(102%) contrast(94%);
    flex-shrink: 0;
}

.home-price__item .btn {
    margin-top: auto;
    font-weight: 700;
    border-radius: 8px;
}