.htc-section {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 50px 40px;
	box-sizing: border-box;
}

.htc-section * {
	box-sizing: border-box;
}

.htc-section-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.htc-heading {
	font-size: 34px;
	font-weight: 700;
	text-align: left;
	margin: 0 0 14px;
	color: #16181d;
	line-height: 1.2;
}

.htc-subheading {
	font-size: 16px;
	color: #5b6270;
	max-width: 900px;
	margin: 0 0 30px;
	line-height: 1.6;
}

.htc-carousel {
	background: #f2f3f5;
	border-radius: 18px;
	padding: 30px;
	overflow: hidden;
	position: relative;
}

.htc-track {
	position: relative;
}

.htc-slide {
	display: none;
	animation: htc-fade .35s ease;
}

.htc-slide.is-active {
	display: block;
}

@keyframes htc-fade {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.htc-slide-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1.05fr;
	gap: 20px;
	align-items: stretch;
}

/* Images */
.htc-images {
	display: contents;
}

.htc-image-box {
	position: relative;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 290 / 306;
}

.htc-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.htc-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #16181d;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 8px;
	z-index: 2;
}

/* Content */
.htc-content {
	background: #fff;
	border-radius: 14px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.htc-name {
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 4px;
	color: #16181d;
}

.htc-treatment {
	font-style: italic;
	color: #7a8190;
	margin: 0 0 18px;
	font-size: 15px;
}

.htc-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.htc-stat {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #f2f3f5;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13.5px;
	font-weight: 600;
	color: #16181d;
}

.htc-stat-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	color: #16181d;
}

.htc-stat-icon svg {
	width: 100%;
	height: 100%;
}

.htc-description {
	font-size: 15px;
	line-height: 1.7;
	color: #4b5160;
	margin: 0;
}

.htc-content-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 24px;
	gap: 12px;
}

.htc-btn {
	display: inline-block;
	background: #16181d;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: .03em;
	text-transform: uppercase;
	padding: 14px 26px;
	border-radius: 8px;
	transition: opacity .2s ease, transform .2s ease;
}

.htc-btn:hover {
	opacity: .85;
	transform: translateY(-1px);
}

.htc-nav {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.htc-arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #16181d;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity .2s ease, transform .15s ease;
	padding: 0;
}

.htc-arrow svg {
	width: 18px;
	height: 18px;
}

.htc-arrow.htc-prev {
	background: #dfe1e5;
	color: #9a9fa8;
}

.htc-arrow:hover {
	transform: scale(1.06);
}

.htc-arrow:active {
	transform: scale(.96);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
	.htc-slide-inner {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"before after"
			"content content";
	}
	.htc-image-box.htc-before { grid-area: before; }
	.htc-image-box.htc-after  { grid-area: after; }
	.htc-content { grid-area: content; }
	.htc-images { display: contents; }
}

@media (max-width: 640px) {
	.htc-heading { font-size: 26px; }
	.htc-carousel { padding: 18px; border-radius: 14px; }
	.htc-slide-inner {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.htc-image-box { aspect-ratio: 1 / 1; border-radius: 10px; }
	.htc-badge { font-size: 10px; padding: 5px 10px; top: 10px; left: 10px; }
	.htc-content { padding: 20px; }
	.htc-name { font-size: 21px; }
	.htc-description { font-size: 14px; }
	.htc-content-bottom {
		flex-direction: column;
		align-items: stretch;
	}
	.htc-btn { text-align: center; }
	.htc-nav { justify-content: center; }
}
