.gobyweb2-hero,
.gobyweb2-hero * {
	box-sizing: border-box;
}

.gobyweb2-hero {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	background: #fff;
	padding: 24px;
}

.gobyweb2-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.gobyweb2-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

.gobyweb2-hero__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
}

.gobyweb2-hero__copy {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	width: 43%;
	padding-top: 12px;
}

.gobyweb2-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	border: 1px solid #afc2ff;
	border-radius: 30px;
	color: #124dff;
	background: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .02em;
	padding: 6px 14px;
}

.gobyweb2-hero__title {
	margin: 25px 0 18px;
	color: #07112d;
	font-family: "Poppins", sans-serif;
	font-size: clamp(36px, 4vw, 55px);
	font-weight: 700;
	letter-spacing: -1.2px;
	line-height: 1.12;
}

.gobyweb2-hero__title-line {
	display: block;
}

.gobyweb2-hero__highlight {
	color: #ff4b16;
}

.gobyweb2-hero__description {
	max-width: 570px;
	color: #536079;
	font-family: "Inter", sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
}

.gobyweb2-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-top: 28px;
}

.gobyweb2-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-height: 48px;
	padding: 15px 25px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none !important;
	transition: transform .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease, border-color .22s ease;
}

.gobyweb2-hero__button:hover,
.gobyweb2-hero__button:focus {
	transform: translateY(-2px);
}

.gobyweb2-hero__button:focus-visible {
	outline: 3px solid rgba(36, 54, 246, .26);
	outline-offset: 3px;
}

.gobyweb2-hero__button svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.gobyweb2-hero__button--primary {
	color: #fff;
	background: linear-gradient(100deg, #124dff 0%, #4a11f7 100%);
	border-color: #2436f6;
	box-shadow: 0 10px 25px rgba(41, 47, 242, .18);
}

.gobyweb2-hero__button--primary:hover,
.gobyweb2-hero__button--primary:focus {
	color: #fff;
	background: #4a11f7;
	border-color: #4a11f7;
	box-shadow: 0 14px 28px rgba(74, 17, 247, .23);
}

.gobyweb2-hero__button--secondary {
	color: #1535e7;
	background: #fff;
	border-color: #ff7a45;
}

.gobyweb2-hero__button--secondary:hover,
.gobyweb2-hero__button--secondary:focus {
	color: #fff;
	background: #ff4b16;
	border-color: #ff4b16;
}

.gobyweb2-hero__trust {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 26px;
}

.gobyweb2-hero__avatars {
	display: block;
	width: 130px;
	height: auto;
	flex: 0 0 auto;
}

.gobyweb2-hero__trust-details {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.gobyweb2-hero__rating {
	padding-top: 1px;
	white-space: nowrap;
	color: #ffa900;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 1.15;
}

.gobyweb2-hero__trust-copy {
	color: #536079;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	line-height: 1.45;
}

.gobyweb2-hero__trust-highlight {
	color: #2538f7;
	font-weight: 700;
}

.gobyweb2-hero__visual {
	position: relative;
	width: 57%;
	flex: 0 0 auto;
	margin-right: -24px;
	transform: translateZ(0);
}

.gobyweb2-hero__visual img {
	display: block;
	width: 100%;
	max-width: 820px;
	height: auto;
	margin-left: auto;
}

.gobyweb2-hero__visual--float img {
	animation: gobyweb2-float 6s ease-in-out infinite;
}

@keyframes gobyweb2-float {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0, -7px, 0); }
}

.gobyweb2-hero__brands {
	margin-top: 34px;
}

.gobyweb2-hero__brands-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	color: #8b95ad;
	font-family: "Inter", sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 3px;
	line-height: 1;
	text-align: center;
}

.gobyweb2-hero__brands-label::before,
.gobyweb2-hero__brands-label::after {
	content: "";
	width: min(25%, 320px);
	height: 1px;
	background-color: #dce1ea;
}

.gobyweb2-hero__brand-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 58px;
	row-gap: 22px;
	margin-top: 19px;
}

.gobyweb2-hero__brand,
.gobyweb2-hero__brand a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #34405a;
	font-family: "Inter", sans-serif;
	font-size: 17px;
	font-weight: 600;
	text-decoration: none;
}

.gobyweb2-hero__brand img {
	display: block;
	width: auto;
	height: auto;
	max-width: 130px;
	max-height: 40px;
	object-fit: contain;
	transition: opacity .2s ease, transform .2s ease;
}

.gobyweb2-hero__brand a:hover img,
.gobyweb2-hero__brand a:focus img {
	opacity: .78;
	transform: translateY(-2px);
}

@media (max-width: 1100px) {
	.gobyweb2-hero__top {
		align-items: center;
	}

	.gobyweb2-hero__copy {
		width: 48%;
	}

	.gobyweb2-hero__visual {
		width: 52%;
	}

	.gobyweb2-hero__title {
		font-size: clamp(38px, 4.4vw, 48px);
	}

	.gobyweb2-hero__trust {
		align-items: flex-start;
	}

	.gobyweb2-hero__trust-details {
		display: block;
	}

	.gobyweb2-hero__trust-copy {
		margin-top: 5px;
	}
}

@media (max-width: 767px) {
	.gobyweb2-hero {
		padding: 36px 18px 28px;
	}

	.gobyweb2-hero__top {
		flex-direction: column;
		gap: 30px;
	}

	.gobyweb2-hero__copy,
	.gobyweb2-hero__visual {
		width: 100% !important;
	}

	.gobyweb2-hero__copy {
		padding-top: 0;
	}

	.gobyweb2-hero__title {
		font-size: clamp(34px, 10vw, 44px);
		letter-spacing: -.8px;
	}

	.gobyweb2-hero__description {
		font-size: 16px;
	}

	.gobyweb2-hero__buttons {
		align-items: stretch;
		margin-top: 24px;
	}

	.gobyweb2-hero__button {
		flex: 1 1 100%;
	}

	.gobyweb2-hero__trust {
		flex-wrap: wrap;
		gap: 12px;
	}

	.gobyweb2-hero__trust-details {
		display: flex;
		flex-wrap: wrap;
	}

	.gobyweb2-hero__visual {
		margin-right: 0;
	}

	.gobyweb2-hero__visual img {
		width: calc(100% + 26px);
		max-width: none;
		margin-left: -13px;
	}

	.gobyweb2-hero__brands {
		margin-top: 28px;
	}

	.gobyweb2-hero__brands-label {
		gap: 12px;
		font-size: 9px;
		letter-spacing: 1.5px;
	}

	.gobyweb2-hero__brands-label::before,
	.gobyweb2-hero__brands-label::after {
		width: 14%;
	}

	.gobyweb2-hero__brand-list {
		column-gap: 30px;
		row-gap: 18px;
	}

	.gobyweb2-hero__brand img {
		max-width: 95px;
		max-height: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gobyweb2-hero__visual--float img {
		animation: none;
	}

	.gobyweb2-hero__button,
	.gobyweb2-hero__brand img {
		transition: none;
	}
}
