.hero {
    padding: 183px 0 100px;
	position: relative;
	overflow: hidden;
	background: #040A1B;
	color: #D5DEE9;
}

.hero__inner {
	padding-bottom: 80px;
	position: relative;
	z-index: 1;
}

.hero__content {
	max-width: 868px;
	position: relative;
	z-index: 1;
}

/* Badge */
.hero__badge {
	display: inline-flex;
	align-items: center;
	margin: 0 0 16px;
    padding: 7px 16px;
	background: rgba(226, 230, 240, 0.03);
	border: 1px solid #252D3F;
	box-shadow: inset 0 1px 10px rgba(56, 63, 86, 0.1);
	border-radius: 40px;
	font-family: 'Montserrat';
	font-size: 18px;
	line-height: 150%;
	font-weight: 500;
	color: #D5DEE9;
}

.hero__badge-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--color-primary);
	margin-right: 15px;
}

.hero__badge-accent {
	color: var(--color-primary);
	margin-right: 5px;
}

/* Heading */
.hero__heading {
	margin: 0 0 20px;
	color: #F8FAFC;
}

.hero__heading span {
	color: #6D7890;
}

/* Text */
.hero__text {
	font-size: 18px;
	line-height: 150%;
	font-weight: 400;
	color: #D5DEE9;
}

.hero__text p {
    margin: 0 0 13px;
	font-size: 18px;
	line-height: 150%;
	font-weight: 400;
	color: #D5DEE9;
}

.hero__btn {
    margin-top: 27px;
}

.hero__media {
	position: absolute;
	top: 50%;
    right: -80px;
	max-width: 669px;
	width: 100%;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 0;
}

.hero__media img {
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-top: -200px;
}

/* Logos */
.hero__logos-title {
	margin: 0 0 32px;
    font-size: 20px;
    line-height: 140%;
    font-weight: 500;
    color: var(--color-dark-fg);
}

.hero__logos {
	--ticker-filter: grayscale(1) brightness(1.6);
}

@media (max-width: 1440px) {
	.hero{
    	padding: 140px 0 60px;
	}

	.hero__badge{
		font-size: 16px;
	}

	.hero__heading{
		margin: 0 0 16px 0;
		font-size: 44px;
	}

	.hero__content {
		max-width: 768px;
	}

	.hero__text p {
		margin: 0 0 12px;
		font-size: 16px;
	}

	.hero__btn {
		margin-top: 26px;
		font-size: 16px;
	}

	.hero__inner {
		padding-bottom: 52px;
	}

	.hero__logos-title {
		margin: 0 0 20px;
		font-size: 18px;
	}

	.ticker__item img {
		height: 40px;
	}

	.hero__media {
		top: 69%;
		right: -11px;
		max-width: 535px;
	}
}

@media (max-width: 1280px) {
	.hero__heading {
		font-size: 40px;
		max-width: 650px;
	}

	.hero__text {
		font-size: 16px;
		max-width: 690px;
	}

	.hero__media {
		top: 63%;
		right: -4px;
		max-width: 548px;
	}
}

@media (max-width: 768px) {
	.hero {
		padding: 31px 0 60px;
	}

	.hero__inner{
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 60px;
	}

	.hero__media {
        position: relative;
        max-width: 364px;
        margin-top: 29px;
		top: 0;
		right: 0;
		transform: none;
    }

	.hero__media img {
		margin-top: 0;
	}

	.hero__heading {
		font-size: 32px;
		max-width: 100%;
	}

	.hero__text {
		max-width: 100%;
	}

	.hero__btn {
		margin-top: 28px;
	}
}

@media (max-width: 550px) {

	.hero {
        padding: 68px 0 40px;
    }

    .hero__inner {
        flex-direction: column;
        gap: 0;
		padding-bottom: 41px;
    }

    /* Дети .hero__content становятся флекс-элементами .hero__inner, чтобы бейдж встал над картинкой. */
    .hero__content {
        display: contents;
    }

    /* Две колонки: точка и текстовый блок, чтобы перенос строки шёл под акцентом, а не под точкой. */
    .hero__badge {
        order: 1;
        display: inline-grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        font-size: 12px;
    }

    .hero__media {
        order: 2;
        margin: 0 0 16px;
        transform: none;
		max-width: 200px;
    }

    .hero__media img {
        margin-top: 0;
    }

    .hero__heading {
        order: 3;
		font-size: 24px;
		margin: 0px 0 15px 0;
    }

    .hero__text {
        order: 4;
    }

	.hero__text p {
        font-size: 14px;
    }

    .hero__btn {
		order: 5;
        margin-top: 26px;
        font-size: 14px;
        min-height: 44px;
        padding: 6px 6px 6px 20px;
    }


	.btn__icon {
		width: 32px;
		height: 32px;
	}

	.hero__logos-title {
        margin: 0px 0 12px;
        font-size: 14px;
    }

	.ticker__item img {
        height: 32px;
    }
}
