/* ─── Section ───────────────────────────────────────────── */
.t16-section--benefits {
	background-color: transparent;
	padding: 40px 0 40px;
	color: #fff;
}

.t16-benefits {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

/* ─── Header ────────────────────────────────────────────── */
.t16-benefits__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.t16-benefits__eyebrow {
	display: block;
	color: var( --t16-color-primary );
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.t16-benefits__heading {
	font-family: var( --t16-font-heading );
	font-size: clamp( 2rem, 4vw, 2.5rem );
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
	color: #fff;
}

.t16-benefits__desc {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba( 255, 255, 255, 0.7 );
	margin: 0;
}

/* ─── Grid ──────────────────────────────────────────────── */
.t16-benefits__grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 24px;
	width: 100%;
}

/* ─── Card ──────────────────────────────────────────────── */
.t16-bencard {
	position: relative;
	background: #0f0f0f;
	border-radius: 8px;
	border: 1px solid rgba( 255, 255, 255, 0.05 );
	border-left: 3px solid var( --t16-color-primary );
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
	transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
	min-width: 0;
}

.t16-bencard:hover {
	transform: translateY(-4px);
	border-color: rgba( 255, 255, 255, 0.15 );
	border-left-color: var( --t16-color-primary );
	box-shadow: 0 16px 40px rgba( 0, 0, 0, 0.4 );
}

/* ─── Icon ──────────────────────────────────────────────── */
.t16-bencard__icon-wrap {
	position: relative;
	width: 48px;
	height: 48px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var( --t16-color-primary );
	border-radius: 6px;
	background: rgba( 181, 255, 0, 0.05 );
	border: 1px solid rgba( 181, 255, 0, 0.1 );
}

.t16-bencard__icon-inner {
	display: flex;
	z-index: 1;
}

/* ─── Content ───────────────────────────────────────────── */
.t16-bencard__title {
	font-family: var( --t16-font-heading );
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 12px 0;
	color: #fff;
	line-height: 1.3;
}

.t16-bencard__desc {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba( 255, 255, 255, 0.65 );
	margin: 0;
	word-wrap: break-word;
}

/* ─── Responsive ────────────────────────────────────────── */

/* Tablet landscape */
@media ( max-width: 1024px ) {
	.t16-benefits__grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

/* Tablet portrait */
@media ( max-width: 768px ) {
	.t16-section--benefits {
		padding: 40px 0 60px;
	}
	.t16-benefits {
		gap: 48px;
	}
	.t16-bencard {
		padding: 32px 24px;
	}
}

/* Mobile */
@media ( max-width: 580px ) {
	.t16-benefits__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.t16-section--benefits {
		padding: 32px 0 48px;
	}
	.t16-benefits {
		gap: 32px;
	}
}
