.home .ecosystem { padding-block: 60px 100px; }
.home .ecosystem .ecosystem-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}
.home .ecosystem .ecosystem-card {
	position: relative;
	background: var(--color-card-light);
	border: 2px solid var(--color-cyan);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card-lg);
	padding: 40px;
	height: 420px;
	overflow: hidden;
}
.home .ecosystem .ecosystem-card-primary { border-color: #0fdfff; }

/* Большой декоративный номер (overlay → absolute) */
.home .ecosystem .card-number {
	position: absolute;
	bottom: -58px; inset-inline-start: 24px;
	font-size: 200px; font-weight: 300; line-height: 1;
	color: rgba(20,20,20,0.10); font-family: var(--font-noto);
	pointer-events: none; user-select: none;
}
/* Верхняя строка: CTA (start) + стрелка (end) */
.home .ecosystem .card-head {
	display: flex; align-items: flex-start; justify-content: space-between;
	margin-bottom: 20px;
	position: relative; z-index: 1;
}
.home .ecosystem .card-cta {
	display: inline-flex; align-items: center; gap: 8px;
	height: 54px; padding-inline: 24px;
	background: var(--gradient-accent); border-radius: var(--radius-pill);
	font-size: 16px; font-weight: 500; color: #000;
	transition: transform 0.2s, box-shadow 0.2s;
}
.home .ecosystem .card-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 10px rgba(0,0,0,0.15); }
.home .ecosystem .card-arrow { flex-shrink: 0; opacity: 0.85; transform: scaleX(-1); }
.home .ecosystem .card-title {
	font-size: 30px; font-weight: 700; color: var(--color-text-dark); text-align: right;
	margin-bottom: 12px; position: relative; z-index: 1;
}
.home .ecosystem .card-desc {
	font-size: 18px; font-weight: 300; color: var(--color-text-muted); line-height: 1.45;
	text-align: right; max-width: 340px; position: relative; z-index: 1;
}
