/* ======================================
   WHY US – MR PRINT PACK
====================================== */
.dr1052whyus {
	padding: 110px 20px;
	background: radial-gradient(circle at top, rgba(15, 118, 110, .18),
		transparent 60%), linear-gradient(180deg, #020617, #01030a);
	font-family: 'Montserrat', sans-serif;
	color: #e5e7eb;
	overflow: hidden;
}

.whyus-inner {
	max-width: 1200px;
	margin: auto;
}

/* ======================================
   TITLE
====================================== */
.whyus-title {
	text-align: center;
	font-size: 38px;
	font-weight: 900;
	margin-bottom: 70px;
	line-height: 1.25;
	text-shadow: 0 14px 40px rgba(0, 0, 0, .9);
}

.whyus-title span {
	color: #0f766e;
}

.whyus-title small {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #9ca3af;
	margin-top: 8px;
	letter-spacing: .06em;
}

/* ======================================
   GRID
====================================== */
.whyus-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
	perspective: 1400px;
}

/* ======================================
   CARD – 3D PRINT PLATE
====================================== */
.whyus-card {
	background: linear-gradient(145deg, #0b1220, #050b15);
	border-radius: 26px;
	padding: 42px 36px;
	text-align: center;
	transform-style: preserve-3d;
	box-shadow: 0 40px 120px rgba(0, 0, 0, .9), inset 0 1px 0
		rgba(255, 255, 255, .05);
	transition: transform .6s cubic-bezier(.22, 1, .36, 1), box-shadow .6s
		ease;
}

.whyus-card .icon {
	font-size: 44px;
	margin-bottom: 18px;
	transform: translateZ(30px);
}

.whyus-card h3 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 12px;
	color: #e5e7eb;
}

.whyus-card p {
	font-size: 15px;
	line-height: 1.75;
	color: #cbd5f5;
}

/* Hover 3D depth (desktop only) */
@media ( min-width : 900px) {
	.whyus-card:hover {
		transform: translateY(-10px) rotateX(4deg);
		box-shadow: 0 60px 160px rgba(0, 0, 0, .95);
	}
}

/* ======================================
   RESPONSIVE
====================================== */
@media ( max-width : 992px) {
	.whyus-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media ( max-width : 600px) {
	.dr1052whyus {
		padding: 80px 16px;
	}
	.whyus-title {
		font-size: 28px;
		margin-bottom: 50px;
	}
	.whyus-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}