/* =========================
   BRIDGE SECTION
========================= */

.bridge-section {
	background: #0f0f10 !important;
	color: #fff;
	padding: 60px 20px 120px;
	text-align: center;
}

.bridge-inner {
	max-width: 720px;
	margin: 0 auto;

	/* animación base */
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.bridge-inner.visible {
	opacity: 1;
	transform: translateY(0);
}

/* eyebrow */
.bridge-eyebrow {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 12px;
}

/* title */
.bridge-title {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 16px;
}

/* text */
.bridge-text {
	font-size: 16px;
	color: #bbb;
	margin-bottom: 32px;
	line-height: 1.5;
}

/* actions */
.bridge-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* primary CTA */
.cta-primary {
	background: #2a21df;
	color: #fff;
	padding: 14px 22px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
}

.cta-primary:hover {
	background: #1f18b8;
}

/* secondary CTA */
.cta-secondary {
	color: #aaa;
	text-decoration: none;
	padding: 14px 22px;
}

.cta-secondary:hover {
	color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 780px) {

	.bridge-title {
		font-size: 28px;
	}

	.bridge-text {
		font-size: 15px;
	}

}