/* Box sizing reset */
.acb-se-wrapper,
.acb-se-wrapper * {
	box-sizing: border-box;
}

.acb-se-wrapper {
	width: 100%;
	background-color: #0b071e;
	padding: 80px 20px;
}

.acb-se-container {
	max-width: 1140px;
	margin: 0 auto;
	width: 100%;
}

/* Header */
.acb-se-header {
	text-align: center;
	margin-bottom: 50px;
}

.acb-se-subtitle {
	color: #c7b3ce;
	font-size: 13px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 12px;
}

.acb-se-title {
	color: #d99a6c;
	font-size: 48px;
	font-family: 'Georgia', serif;
	line-height: 1.2;
	margin: 0;
}

/* Cards Grid */
.acb-se-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

/* Card Styling */
.acb-se-card {
	border: 1px dashed rgba(255, 255, 255, 0.2);
	padding: 40px 25px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	border-radius: 2px;
	transition: all 0.3s ease;
	background: transparent;
}

/* Gradient State */
.acb-se-card.has-gradient,
.acb-se-card:hover {
	background: linear-gradient(180deg, rgba(14, 30, 48, 0.2) 0%, rgba(0, 128, 128, 0.4) 100%);
}

/* Card Icon */
.acb-se-card-icon {
	font-size: 32px;
	color: #d99a6c;
	margin-bottom: 20px;
	line-height: 1;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.acb-se-card-icon svg {
	width: 32px;
	height: 32px;
	fill: #d99a6c;
}

/* Card Titles & Desc */
.acb-se-card-title {
	color: #d99a6c;
	font-size: 20px;
	font-family: 'Georgia', serif;
	margin: 0 0 15px 0;
	line-height: 1.3;
}

.acb-se-card-desc {
	color: #ffffff;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	opacity: 0.85;
}

/* Bottom Stats Bar */
.acb-se-stats-bar {
	border: 1px dashed rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 40px 20px;
}

.acb-se-stat-item {
	flex: 1;
	text-align: center;
	padding: 0 15px;
}

.acb-se-stat-item:not(:last-child) {
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.acb-se-stat-number {
	color: #d99a6c;
	font-size: 52px;
	font-family: 'Georgia', serif;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 15px;
}

.acb-se-stat-label {
	color: #ffffff;
	font-size: 12px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 600;
}

/* Tablet Responsive */
@media (max-width: 991px) {
	.acb-se-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile Responsive */
@media (max-width: 600px) {
	.acb-se-wrapper {
		padding: 50px 15px;
	}

	.acb-se-title {
		font-size: 32px;
	}

	.acb-se-cards-grid {
		grid-template-columns: 1fr;
	}

	.acb-se-stats-bar {
		flex-direction: column;
		gap: 30px;
	}

	.acb-se-stat-item:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		padding-bottom: 30px;
		width: 100%;
	}
}