.-mt-1\.85 {
	margin-top: calc(var(--spacing) * -1.85);
}

.mb-1px {
	margin-bottom: -1px;
}
 
.nav-hidden {
	transform: translateY(-100%);
}
.stat-container {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s ease-out,
		transform 0.6s ease-out;
}

/* Этот класс мы добавим через JS прямо перед запуском счетчика */
.stat-container.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Изначально контент скрыт (0fr) */
.accordion-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease-out;
}

/* Внутри грида элемент должен иметь overflow: hidden для плавной анимации */
.accordion-content > div {
	overflow: hidden;
}

.accordion-item .accordion-trigger {
	cursor: pointer;
}

/* Состояние, когда аккордеон открыт */
.accordion-item.is-active .accordion-content {
	grid-template-rows: 1fr;
}

/* Логика переключения иконок */
.accordion-icon-wrapper .icon-minus {
	display: none; /* По умолчанию минус скрыт */
}

.accordion-icon-wrapper .icon-plus {
	display: block; /* По умолчанию плюс виден */
}

/* Когда аккордеон открыт — меняем их местами */
.accordion-item.is-active .icon-minus {
	display: block;
}

.accordion-item.is-active .icon-plus {
	display: none;
}

.drone-swarm-wrapper {
	/* Задайте нужный цвет для SVG-линий (text-accent) */
	color: #ff007a;
	pointer-events: none;
	overflow: visible;
}

.drone-links {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: visible;
}

.drone-img {
	position: absolute;
	z-index: 10;
	user-select: none;
	height: auto;
	will-change: transform, opacity;
	/* Сдвиг на 50% влево компенсируется в JS, чтобы якорь был по центру */
	transform: translate3d(-50%, 0, 0);
}

/* Анимация появления при скролле */
.drone-reveal,
.drone-links {
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}

.drone-reveal.is-revealed,
.drone-links.is-revealed {
	opacity: 1;
}

.scalability-chart-wrapper {
	width: 100%;
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity 0.7s ease-out,
		transform 0.7s ease-out;
}

.scalability-chart-wrapper.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.scalability-chart-wrapper svg {
	width: 100%;
	height: auto;
	display: block;
}

/* Анимация маски, которая "рисует" график слева направо */
.scalability-chart-wrapper .reveal-rect {
	transition: width 1.6s ease-out;
}

/* Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
	display: none;
}
/* IE, Edge and Firefox */
.no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.whatsapp-btn {
	/* font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; */
	/* position: fixed;
  bottom: 30px;
  right: 30px; */
	background-color: #25d366;
	color: white;
	padding: 2px 15px;
	border-radius: 50px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	z-index: 1000;
	font-weight: 600;
	max-width: max-content;
}
.whatsapp-btn:hover {
	transform: translateY(-3px);
	/* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); */
}
.whatsapp-btn svg {
	display: block;
	width: 15px;
}
