/* ═══════════════════════════════════════════════════════════
   REVIEWS & STATS SECTION (DARK THEME)
   ═══════════════════════════════════════════════════════════ */

.t16-section--reviews {
	background-color: transparent;
	padding: 40px 0 80px;
	color: #fff;
}

/* ── Header ──────────────────────────────────────────────── */
.t16-reviews__header {
	text-align: center;
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.t16-reviews__eyebrow {
	display: block;
	color: #B5FF00;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.t16-reviews__heading {
	color: #ffffff;
	font-size: 3rem;
	font-weight: 900;
	margin: 0;
	line-height: 1.2;
}

/* ── Reviews Grid ────────────────────────────────────────── */
.t16-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 80px;
}

.t16-revcard {
	background-color: #0d0d0d;
	border-top: 3px solid #B5FF00;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.t16-revcard__stars {
	color: #B5FF00;
	margin-bottom: 24px;
	display: flex;
	gap: 4px;
}

.t16-revcard__stars svg {
	width: 18px;
	height: 18px;
}

.t16-revcard__text {
	color: #cccccc;
	font-size: 1.05rem;
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 30px;
	flex-grow: 1;
}

.t16-revcard__text p:last-child {
	margin-bottom: 0;
}

.t16-revcard__author-box {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: auto;
}

.t16-revcard__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #1a1a1a;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.t16-revcard__meta {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.t16-revcard__name {
	color: #ffffff;
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 2px;
}

.t16-revcard__subtitle {
	color: #888888;
	font-size: 0.85rem;
}

/* ── Stats Grid ──────────────────────────────────────────── */
.t16-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 50px;
}

.t16-stat {
	text-align: center;
	background-color: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 30px 20px;
	transition: transform 0.2s, background-color 0.2s, border-color 0.2s;
}

.t16-stat:hover {
	background-color: rgba(255, 255, 255, 0.05);
	border-color: rgba(181, 255, 0, 0.3);
	transform: translateY(-2px);
}

.t16-stat__value {
	color: #ffffff;
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.t16-stat__icon {
	color: #B5FF00;
	display: flex;
	align-items: center;
}

.t16-stat__label {
	color: #a0a0a0;
	font-size: 1rem;
	font-weight: 500;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
	.t16-reviews__grid {
		gap: 20px;
	}
	.t16-revcard {
		padding: 30px 20px;
	}
	.t16-reviews__heading {
		font-size: 2.5rem;
	}
	.t16-stat__value {
		font-size: 2rem;
	}
}

@media (max-width: 900px) {
	.t16-reviews__grid {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}
	.t16-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media (max-width: 600px) {
	.t16-section--reviews {
		padding: 40px 0;
	}
	.t16-reviews__heading {
		font-size: 2rem;
	}
	.t16-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		margin-top: 30px;
	}
	.t16-stat {
		padding: 20px 10px;
	}
	.t16-stat__value {
		font-size: 1.75rem;
	}
	.t16-stat__label {
		font-size: 0.85rem;
	}
}
