.b2b-ledord-section {
	padding: 0 20px;
	width: var(--b2b-ledord-width, 1300px);
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.b2b-ledord-grid {
	display: flex;
	gap: 20px;
	margin-top: 40px;
	width: 100%;
}

.b2b-ledord-card {
	position: relative;
	display: block;
	border-radius: 20px;
	overflow: hidden;
	height: 500px;
	cursor: pointer;
	flex-basis: 33.33%;
	flex-shrink: 0;
	transition: all .6s cubic-bezier(.4, 0, .2, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
	opacity: 0;
	transform: translateY(40px);
	animation: b2bLedordFadeInUp .8s cubic-bezier(.4, 0, .2, 1) forwards;
	z-index: 0;
	color: inherit;
	text-decoration: none !important;
}

@keyframes b2bLedordFadeInUp {
	from { opacity: 0; transform: translateY(40px); }
	to { opacity: 1; transform: translateY(0); }
}

.b2b-ledord-card:nth-child(1) { animation-delay: .1s; }
.b2b-ledord-card:nth-child(2) { animation-delay: .25s; }
.b2b-ledord-card:nth-child(3) { animation-delay: .4s; }
.b2b-ledord-card:not(.b2b-ledord-animated) { animation-play-state: paused; }
.b2b-ledord-card.b2b-ledord-animated { animation-play-state: running; }

.b2b-ledord-card:hover {
	flex-basis: 40%;
	transform: translateY(-5px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, .4);
	z-index: 1;
}

.b2b-ledord-grid:hover .b2b-ledord-card:not(:hover) {
	flex-basis: 30%;
	transform: scale(.95);
	opacity: .7;
}

.b2b-ledord-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	mix-blend-mode: overlay;
	transition: background .4s ease;
	pointer-events: none;
	background: transparent;
}

.b2b-ledord-card:hover[data-type="overview"]::after {
	background: linear-gradient(180deg, rgba(52,152,219,.4) 0%, rgba(52,152,219,.5) 50%, rgba(52,152,219,.6) 100%);
}
.b2b-ledord-card:hover[data-type="solution"]::after {
	background: linear-gradient(180deg, rgba(241,196,15,.4) 0%, rgba(241,196,15,.5) 50%, rgba(241,196,15,.6) 100%);
}
.b2b-ledord-card:hover[data-type="performance"]::after {
	background: linear-gradient(180deg, rgba(231,76,60,.4) 0%, rgba(231,76,60,.5) 50%, rgba(231,76,60,.6) 100%);
}

.b2b-ledord-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.3) 40%, rgba(0,0,0,.7) 80%, rgba(0,0,0,.9) 100%);
	z-index: 2;
	transition: opacity .4s ease;
}

.b2b-ledord-card:hover::before {
	background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.4) 40%, rgba(0,0,0,.8) 80%, rgba(0,0,0,.95) 100%);
}

.b2b-ledord-background {
	position: absolute;
	inset: 0;
	display: block;
	background-size: cover;
	background-position: right center;
	transition: transform .6s ease;
	background-color: #2a2a3e;
}

.b2b-ledord-card:hover .b2b-ledord-background {
	transform: scale(1.1);
}

.b2b-ledord-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	padding: 40px;
	z-index: 3;
	color: #fff;
	transition: all .4s ease;
	text-align: left;
}

.b2b-ledord-grid:hover .b2b-ledord-card:not(:hover) .b2b-ledord-content {
	opacity: .3;
	transform: scale(.8);
}

.b2b-ledord-type {
	display: inline-block;
	color: #1a1a2e;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: .9rem;
	font-weight: 600;
	margin-bottom: 20px;
	transition: all .3s ease;
}

.b2b-ledord-card[data-type="overview"] .b2b-ledord-type { background: rgba(52,152,219,.9); }
.b2b-ledord-card[data-type="solution"] .b2b-ledord-type { background: rgba(241,196,15,.9); }
.b2b-ledord-card[data-type="performance"] .b2b-ledord-type { background: rgba(231,76,60,.9); }

.b2b-ledord-card:hover .b2b-ledord-type { transform: translateY(-3px); opacity: 1; }
.b2b-ledord-card:hover[data-type="overview"] .b2b-ledord-type { background: rgba(52,152,219,1); }
.b2b-ledord-card:hover[data-type="solution"] .b2b-ledord-type { background: rgba(241,196,15,1); }
.b2b-ledord-card:hover[data-type="performance"] .b2b-ledord-type { background: rgba(231,76,60,1); }

.b2b-ledord-title {
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #F0F0F0 !important;
	line-height: 1.2;
	transition: all .3s ease;
}

.b2b-ledord-card:hover .b2b-ledord-title { transform: translateY(-5px); }

.b2b-ledord-intro {
	display: block;
	font-size: 1.05rem;
	color: #e8e8f0;
	line-height: 1.6;
	opacity: .9;
	transition: all .3s ease;
	max-height: 0;
	overflow: hidden;
	margin-bottom: 0;
}

.b2b-ledord-card:hover .b2b-ledord-intro {
	opacity: 1;
	max-height: 150px;
	margin-bottom: 20px;
}

.b2b-ledord-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	font-size: 1rem;
	opacity: 0;
	transform: translateY(20px);
	transition: all .4s ease;
}

.b2b-ledord-card[data-type="overview"] .b2b-ledord-cta { color: #5dade2; }
.b2b-ledord-card[data-type="solution"] .b2b-ledord-cta { color: #f7dc6f; }
.b2b-ledord-card[data-type="performance"] .b2b-ledord-cta { color: #ec7063; }

.b2b-ledord-card:hover .b2b-ledord-cta { opacity: 1; transform: translateY(0); }

.b2b-ledord-arrow {
	width: 16px;
	height: 16px;
	transition: transform .3s ease;
}

.b2b-ledord-card:hover .b2b-ledord-arrow { transform: translateX(5px); }

@media (max-width: 1024px) {
	.b2b-ledord-section { width: 100%; padding: 0 20px; }
	.b2b-ledord-grid { flex-direction: column; gap: 25px; }
	.b2b-ledord-card { flex-basis: auto; width: 100%; height: 450px; box-sizing: border-box; }
	.b2b-ledord-card:hover { flex-basis: auto; transform: translateY(-5px) scale(1.02); }
	.b2b-ledord-grid:hover .b2b-ledord-card:not(:hover) { flex-basis: auto; transform: scale(1); opacity: 1; }
	.b2b-ledord-card:nth-child(1),
	.b2b-ledord-card:nth-child(2),
	.b2b-ledord-card:nth-child(3) { animation-delay: .1s; }
	.b2b-ledord-intro { opacity: 1; max-height: 150px; margin-bottom: 20px; }
	.b2b-ledord-cta { opacity: 1; transform: translateY(0); }
	.b2b-ledord-card[data-type="overview"] .b2b-ledord-type { background: rgba(52,152,219,1); }
	.b2b-ledord-card[data-type="solution"] .b2b-ledord-type { background: rgba(241,196,15,1); }
	.b2b-ledord-card[data-type="performance"] .b2b-ledord-type { background: rgba(231,76,60,1); }
}

@media (max-width: 768px) {
	.b2b-ledord-section { width: 100%; padding: 60px 15px; box-sizing: border-box; }
	.b2b-ledord-grid { flex-direction: column; gap: 20px; width: 100%; }
	.b2b-ledord-card { height: 400px; width: 100%; max-width: 100%; animation-duration: .6s; box-sizing: border-box; }
	.b2b-ledord-card:hover { transform: translateY(-3px); }
	.b2b-ledord-grid:hover .b2b-ledord-card:not(:hover) { transform: scale(1); opacity: 1; }
	.b2b-ledord-card:nth-child(1),
	.b2b-ledord-card:nth-child(2),
	.b2b-ledord-card:nth-child(3) { animation-delay: .1s; }
	.b2b-ledord-content { padding: 30px; box-sizing: border-box; }
	.b2b-ledord-title { font-size: 1.5rem; }
	.b2b-ledord-intro { opacity: 1; max-height: 150px; margin-bottom: 20px; }
	.b2b-ledord-cta { opacity: 1; transform: translateY(0); }
	.b2b-ledord-card[data-type="overview"] .b2b-ledord-type { background: rgba(52,152,219,1); }
	.b2b-ledord-card[data-type="solution"] .b2b-ledord-type { background: rgba(241,196,15,1); }
	.b2b-ledord-card[data-type="performance"] .b2b-ledord-type { background: rgba(231,76,60,1); }
}

@media (prefers-reduced-motion: reduce) {
	.b2b-ledord-card,
	.b2b-ledord-background,
	.b2b-ledord-content,
	.b2b-ledord-type,
	.b2b-ledord-title,
	.b2b-ledord-intro,
	.b2b-ledord-cta,
	.b2b-ledord-arrow {
		animation: none !important;
		transition: none !important;
	}
	.b2b-ledord-card {
		opacity: 1;
		transform: none;
	}
}

.b2b-ledord-card:focus,
.b2b-ledord-card:focus-visible {
	outline: 2px solid #3498db;
	outline-offset: 2px;
}
