/* ================================================================
   PETEK TEMİZLEME & KOMBİ (HVAC / INDUSTRIAL HEATING)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;600;700;800;900&display=swap');

/* --- Tokens --- */
.heat-theme {
	--ht-bg: #F4F7F6;            /* Cool Light Industrial Gray */
	--ht-surface: #FFFFFF;
	--ht-primary: #0A192F;       /* Deep Navy / Plumbing Blue */
	--ht-secondary: #112240;     /* Lighter Navy */
	--ht-hot: #FF5A00;           /* Vibrant Fire Orange */
	--ht-hot-hover: #E04D00;
	--ht-cold: #00B4D8;          /* Water Blue Accent */
	--ht-text: #4A5568;          /* Slate */
	--ht-border: #E2E8F0;
	
	--ht-font-body: 'Inter', sans-serif;
	--ht-font-heading: 'Outfit', sans-serif;
	
	background-color: var(--ht-bg);
	color: var(--ht-text);
	font-family: var(--ht-font-body);
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
}

.heat-theme * { box-sizing: border-box; }
.heat-theme img { display: block; max-width: 100%; border-radius: 6px; }

.ht-container {
	margin: 0 auto;
	padding: 0 30px;
	width: min(1200px, 100%);
}

.center-text { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.ht-section-kicker {
	color: var(--ht-hot);
	display: inline-block;
	font-family: var(--ht-font-heading);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	margin-bottom: 15px;
	text-transform: uppercase;
	background: rgba(255, 90, 0, 0.1);
	padding: 6px 14px;
	border-radius: 4px;
}

.ht-section-title {
	color: var(--ht-primary);
	font-family: var(--ht-font-heading);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 20px;
	letter-spacing: -1px;
}

.ht-section-title strong { color: var(--ht-hot); }

.ht-section-desc {
	font-size: 18px;
	color: var(--ht-text);
	max-width: 650px;
	margin: 0 0 40px;
}
.center-text .ht-section-desc { margin: 0 auto 40px; }

/* ================================================================
   BUTTONS
   ================================================================ */
.ht-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ht-font-heading);
	font-size: 16px;
	font-weight: 700;
	padding: 18px 36px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
	gap: 12px;
}

.ht-btn--hot {
	background: var(--ht-hot);
	color: #fff !important;
	border: 2px solid var(--ht-hot);
	box-shadow: 0 10px 20px rgba(255, 90, 0, 0.2);
}
.ht-btn--hot:hover {
	background: transparent;
	color: var(--ht-hot) !important;
	transform: translateY(-2px);
}

.ht-btn--outline {
	background: transparent;
	border: 2px solid var(--ht-primary);
	color: var(--ht-primary) !important;
}
.ht-btn--outline:hover {
	background: var(--ht-primary);
	color: #fff !important;
}

.ht-btn--ghost {
	background: rgba(255,255,255,0.1);
	border: 2px solid rgba(255,255,255,0.2);
	color: #fff !important;
}
.ht-btn--ghost:hover {
	background: #fff;
	color: var(--ht-primary) !important;
}

/* ================================================================
   UNIVERSAL ENVATO SLIDER (HER SEKTÖRE UYGUN)
   ================================================================ */
.envato-universal-slider {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 700px;
	max-height: 900px;
	overflow: hidden;
	background: #111;
	
	/* Universal Variables (Tema renklerini otomatik alır) */
	--eus-primary: var(--ht-hot, #FF5A00);
	--eus-primary-text: #fff;
	--eus-font-heading: var(--ht-font-heading, 'Outfit', sans-serif);
}

.eus-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.eus-slide {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	display: flex;
	align-items: center;
}
.eus-slide.active {
	opacity: 1;
	visibility: visible;
}

.eus-bg {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: 1;
}
.eus-bg img {
	width: 100%; height: 100%;
	object-fit: cover;
	transform: scale(1.1);
	transition: transform 6s ease; /* Yavaş zoom (Ken Burns) efekti */
}
.eus-slide.active .eus-bg img { transform: scale(1); }

.eus-overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: linear-gradient(90deg, rgba(10,25,47,0.9) 0%, rgba(10,25,47,0.6) 50%, rgba(10,25,47,0.1) 100%);
}

.eus-content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 80px; /* Header boşluğu */
}

/* Slider Yazı Animasyonları */
.eus-slide .eus-kicker,
.eus-slide .eus-title,
.eus-slide .eus-desc,
.eus-slide .eus-actions {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.eus-slide.active .eus-kicker { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.eus-slide.active .eus-title { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.eus-slide.active .eus-desc { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.eus-slide.active .eus-actions { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }

/* Yazı Stilleri */
.eus-kicker {
	display: inline-block;
	background: var(--eus-primary);
	color: var(--eus-primary-text);
	padding: 8px 16px;
	border-radius: 4px;
	font-family: var(--eus-font-heading);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 25px;
}

.eus-title {
	color: #fff;
	font-family: var(--eus-font-heading);
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 25px;
	max-width: 800px;
}
.eus-title strong { color: var(--eus-primary); }

.eus-desc {
	color: rgba(255,255,255,0.8);
	font-size: 20px;
	line-height: 1.6;
	max-width: 600px;
	margin-bottom: 40px;
}

/* Butonlar */
.eus-actions { display: flex; gap: 20px; }
.eus-btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 18px 36px; border-radius: 6px;
	font-family: var(--eus-font-heading); font-size: 16px; font-weight: 700;
	text-decoration: none; transition: all 0.3s ease;
}
.eus-btn--primary {
	background: var(--eus-primary); color: var(--eus-primary-text) !important;
	border: 2px solid var(--eus-primary);
}
.eus-btn--primary:hover { background: transparent; color: var(--eus-primary) !important; }

.eus-btn--outline {
	background: transparent; color: #fff !important;
	border: 2px solid rgba(255,255,255,0.3);
}
.eus-btn--outline:hover { background: #fff; color: #111 !important; }

/* Oklar (Arrows) */
.eus-arrow {
	position: absolute;
	top: 50%; transform: translateY(-50%);
	width: 60px; height: 60px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	color: #fff;
	font-size: 20px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}
.eus-arrow:hover { background: var(--eus-primary); border-color: var(--eus-primary); }
.eus-prev { left: 40px; }
.eus-next { right: 40px; }

/* Noktalar (Pagination) */
.eus-pagination {
	position: absolute;
	bottom: 40px; left: 50%; transform: translateX(-50%);
	display: flex; gap: 12px;
	z-index: 10;
}
.eus-dot {
	width: 12px; height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}
.eus-dot:hover, .eus-dot.active {
	background: var(--eus-primary);
	transform: scale(1.3);
}

/* Stats Strip */
.ht-stats-strip {
	background: var(--ht-secondary);
	border-top: 1px solid rgba(255,255,255,0.05);
	position: relative;
	z-index: 2;
}

.ht-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 30px;
}

.ht-stat-item {
	text-align: center;
	border-right: 1px solid rgba(255,255,255,0.1);
}
.ht-stat-item:last-child { border-right: none; }

.ht-stat-item strong {
	display: block;
	font-family: var(--ht-font-heading);
	font-size: 32px;
	font-weight: 800;
	color: var(--ht-hot);
	margin-bottom: 5px;
}
.ht-stat-item span {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255,255,255,0.6);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ================================================================
   SYMPTOMS (WARNING GRID)
   ================================================================ */
.ht-symptoms { padding: 120px 0; background: var(--ht-bg); }

.ht-symptoms__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.ht-warn-card {
	background: var(--ht-surface);
	padding: 40px;
	border-radius: 6px;
	border: 1px solid var(--ht-border);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.ht-warn-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 4px; height: 100%;
	background: var(--ht-hot);
	transform: scaleY(0);
	transition: transform 0.3s ease;
	transform-origin: bottom;
}
.ht-warn-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: transparent; }
.ht-warn-card:hover::before { transform: scaleY(1); }

.htw-icon {
	width: 60px; height: 60px;
	background: rgba(255, 90, 0, 0.1);
	color: var(--ht-hot);
	border-radius: 6px;
	display: flex; align-items: center; justify-content: center;
	font-size: 26px;
	margin-bottom: 25px;
}

.ht-warn-card h3 { font-size: 20px; color: var(--ht-primary); margin: 0 0 10px; }
.ht-warn-card p { margin: 0; font-size: 15px; }

/* ================================================================
   MACHINE CLEANING (PROCESS)
   ================================================================ */
.ht-machine { padding: 120px 0; background: var(--ht-surface); }

.ht-machine__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.htm-image-box { position: relative; }
.htm-image-box img {
	border-radius: 6px;
	box-shadow: 0 20px 40px rgba(10, 25, 47, 0.1);
}

.htm-tag {
	position: absolute;
	bottom: -20px; right: 20px;
	background: var(--ht-primary);
	color: #fff;
	padding: 15px 25px;
	border-radius: 4px;
	display: flex; align-items: center; gap: 10px;
	font-family: var(--ht-font-heading);
	font-weight: 700;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.htm-tag i { color: var(--ht-hot); font-size: 20px; }

.ht-prose { font-size: 17px; margin-bottom: 40px; }

.ht-steps-list { display: flex; flex-direction: column; gap: 20px; }

.hts-item {
	display: flex;
	gap: 20px;
	background: var(--ht-bg);
	padding: 20px;
	border-radius: 6px;
	border-left: 3px solid var(--ht-border);
	transition: all 0.3s ease;
}
.hts-item:hover { border-color: var(--ht-primary); background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.hts-num {
	font-family: var(--ht-font-heading);
	font-size: 24px;
	font-weight: 900;
	color: var(--ht-border);
	transition: color 0.3s ease;
}
.hts-item:hover .hts-num { color: var(--ht-hot); }

.hts-info h4 { margin: 0 0 5px; font-size: 18px; color: var(--ht-primary); }
.hts-info p { margin: 0; font-size: 14px; }

/* ================================================================
   SERVICES
   ================================================================ */
.ht-services { padding: 120px 0; background: var(--ht-primary); color: #fff; }
.ht-services .ht-section-title { color: #fff; }
.ht-services .ht-btn--outline { border-color: rgba(255,255,255,0.3); color: #fff !important; }
.ht-services .ht-btn--outline:hover { background: #fff; color: var(--ht-primary) !important; }

.ht-services__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
}

.ht-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.ht-service-card {
	background: var(--ht-secondary);
	border-radius: 6px;
	text-decoration: none;
	overflow: hidden;
	transition: all 0.4s ease;
	border: 1px solid rgba(255,255,255,0.05);
	display: flex; flex-direction: column;
}
.ht-service-card:hover { transform: translateY(-8px); border-color: var(--ht-hot); }

.htsc-img { position: relative; }
.htsc-img img { aspect-ratio: 4/3; object-fit: cover; border-radius: 0; opacity: 0.8; transition: opacity 0.3s ease; }
.ht-service-card:hover .htsc-img img { opacity: 1; }

.htsc-badge {
	position: absolute;
	top: 20px; right: 20px;
	background: var(--ht-hot);
	color: #fff;
	font-family: var(--ht-font-heading);
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 4px;
	text-transform: uppercase;
}

.htsc-body { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.htsc-body h3 { font-size: 22px; color: #fff; margin: 0 0 10px; }
.htsc-body p { font-size: 15px; color: rgba(255,255,255,0.7); margin: 0 0 20px; flex-grow: 1; }

.htsc-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: var(--ht-cold);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
}
.ht-service-card:hover .htsc-foot i { transform: translateX(5px); color: var(--ht-hot); }

/* ================================================================
   WORKFLOW
   ================================================================ */
.ht-workflow { padding: 100px 0; background: var(--ht-surface); border-bottom: 1px solid var(--ht-border); }

.ht-workflow__line {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.htw-step { text-align: center; position: relative; }
/* Line connecting steps */
.htw-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 30px; right: -50%;
	width: 100%; height: 2px;
	background: dashed 2px var(--ht-border);
	z-index: 1;
}

.htw-num {
	width: 60px; height: 60px;
	background: var(--ht-bg);
	border: 2px solid var(--ht-border);
	color: var(--ht-primary);
	font-family: var(--ht-font-heading);
	font-size: 24px;
	font-weight: 900;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 20px;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}
.htw-step:hover .htw-num { border-color: var(--ht-hot); color: var(--ht-hot); }

.htw-step h4 { font-size: 18px; color: var(--ht-primary); margin: 0 0 10px; }
.htw-step p { font-size: 14px; margin: 0; }

/* ================================================================
   BENEFITS
   ================================================================ */
.ht-benefits { padding: 120px 0; background: var(--ht-bg); }

.ht-benefits__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.ht-check-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.htcl-item {
	display: flex; gap: 15px; align-items: flex-start;
	background: var(--ht-surface);
	padding: 20px;
	border-radius: 6px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.htcl-item i { color: var(--ht-cold); font-size: 24px; margin-top: 2px; }
.htcl-item strong { display: block; font-size: 18px; color: var(--ht-primary); margin-bottom: 5px; }
.htcl-item p { margin: 0; font-size: 14px; }

.htb-img-wrapper { position: relative; }
.htb-img-wrapper img { border-radius: 6px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.htb-status-badge {
	position: absolute;
	top: 30px; left: -30px;
	background: #fff;
	padding: 20px;
	border-radius: 6px;
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	border-left: 4px solid var(--ht-cold);
	display: flex; flex-direction: column;
}
.htb-status-badge i { font-size: 30px; color: var(--ht-primary); margin-bottom: 10px; }
.htb-status-badge span { font-size: 12px; font-weight: 700; color: var(--ht-text); text-transform: uppercase; }
.htb-status-badge strong { font-family: var(--ht-font-heading); font-size: 18px; color: var(--ht-primary); }

/* ================================================================
   BLOG
   ================================================================ */
.ht-blog {
	padding: 120px 0;
	background: var(--ht-bg);
	border-bottom: 1px solid var(--ht-border);
}

.ht-blog__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
	margin-bottom: 60px;
}

.ht-blog__intro h2 {
	color: var(--ht-primary);
	font-family: var(--ht-font-heading);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 20px;
	letter-spacing: -1px;
}

.ht-blog__intro .ht-section-desc {
	margin-bottom: 0;
}

.ht-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.ht-blog-card {
	background: var(--ht-surface);
	border: 1px solid var(--ht-border);
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ht-blog-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 90, 0, 0.35);
	box-shadow: 0 18px 40px rgba(10, 25, 47, 0.08);
}

.htbc-media {
	position: relative;
	display: block;
	text-decoration: none;
}

.htbc-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 0;
	transition: transform 0.4s ease;
}

.ht-blog-card:hover .htbc-media img {
	transform: scale(1.04);
}

.htbc-media-ph {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--ht-secondary) 0%, var(--ht-primary) 100%);
	color: rgba(255, 255, 255, 0.65);
	font-size: 42px;
}

.htbc-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	background: var(--ht-hot);
	color: #fff;
	font-family: var(--ht-font-heading);
	font-size: 11px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 4px;
	text-transform: uppercase;
}

.htbc-body {
	padding: 28px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.htbc-body h3 {
	margin: 0 0 12px;
	font-family: var(--ht-font-heading);
	font-size: 22px;
	line-height: 1.3;
	color: var(--ht-primary);
}

.htbc-body h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.ht-blog-card:hover .htbc-body h3 a {
	color: var(--ht-hot);
}

.htbc-body p {
	margin: 0 0 24px;
	font-size: 15px;
	color: var(--ht-text);
	flex-grow: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
}

.htbc-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-top: 18px;
	border-top: 1px solid var(--ht-border);
	font-size: 13px;
	color: var(--ht-text);
}

.htbc-read {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ht-font-heading);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--ht-hot);
	text-decoration: none;
	transition: gap 0.25s ease;
}

.ht-blog-card:hover .htbc-read {
	gap: 12px;
}

/* ================================================================
   FAQ (INTERACTIVE ACCORDION)
   ================================================================ */
.ht-faq { padding: 120px 0; background: var(--ht-surface); }

.ht-faq__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: flex-start;
}

.ht-faq__info { position: sticky; top: 40px; }

.ht-accordion { display: flex; flex-direction: column; }

.ht-acc-card { border-bottom: 1px solid var(--ht-border); }
.ht-acc-card:first-child { border-top: 1px solid var(--ht-border); }

.ht-acc-head {
	display: flex; justify-content: space-between; align-items: center;
	padding: 25px 0;
	cursor: pointer;
	list-style: none;
	font-family: var(--ht-font-heading);
	font-size: 18px;
	font-weight: 600;
	color: var(--ht-primary);
	transition: color 0.3s ease;
}
.ht-acc-head::-webkit-details-marker { display: none; }
.ht-acc-card:hover .ht-acc-head { color: var(--ht-hot); }

.ht-acc-icon { color: var(--ht-primary); font-size: 16px; transition: transform 0.3s ease; }
.ht-acc-card[open] .ht-acc-icon { transform: rotate(45deg); color: var(--ht-hot); }

.ht-acc-body { padding-bottom: 25px; }
.ht-acc-body p { margin: 0; font-size: 15px; color: var(--ht-text); }

/* ================================================================
   CONTACT / CTA
   ================================================================ */
.ht-contact { padding: 0 0 120px; background: var(--ht-surface); }

.ht-cta-banner {
	background: var(--ht-hot);
	color: #fff;
	padding: 60px 40px;
	border-radius: 6px;
	text-align: center;
	margin-bottom: -60px;
	position: relative;
	z-index: 2;
	box-shadow: 0 20px 40px rgba(255, 90, 0, 0.2);
}
.ht-cta-text h2 { margin: 0 0 10px; font-family: var(--ht-font-heading); font-size: 32px; font-weight: 800; color: #fff; }
.ht-cta-text p { margin: 0; font-size: 18px; opacity: 0.9; }

.ht-contact-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--ht-primary);
	border-radius: 6px;
	overflow: hidden;
	color: #fff;
	padding-top: 60px; /* Offset for banner */
}

.htc-info { padding: 60px; }
.htc-info .ht-section-title { color: #fff; }

.htc-details { display: flex; flex-direction: column; gap: 30px; margin-top: 40px; }
.htcd-row { display: flex; gap: 20px; align-items: flex-start; }
.htcd-row i { color: var(--ht-cold); font-size: 24px; margin-top: 2px; }
.htcd-row strong { display: block; font-size: 18px; color: #fff; margin-bottom: 5px; font-family: var(--ht-font-heading); }
.htcd-row p { margin: 0; font-size: 15px; color: rgba(255,255,255,0.7); }

.htc-map { position: relative; }
.htc-map iframe { width: 100%; height: 100%; border: none; filter: contrast(1.1) grayscale(10%); }

.htc-map-ph {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	height: 100%; background: var(--ht-secondary); color: rgba(255,255,255,0.5);
}
.htc-map-ph i { font-size: 40px; color: var(--ht-cold); margin-bottom: 10px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
	.ht-hero__grid { grid-template-columns: 1fr; text-align: center; gap: 60px; }
	.ht-actions { justify-content: center; }
	.ht-hud--top { left: 20px; }
	.ht-hud--bottom { right: 20px; }
	
	.ht-symptoms__grid { grid-template-columns: repeat(2, 1fr); }
	.ht-machine__grid { grid-template-columns: 1fr; gap: 60px; }
	
	.ht-services__head { flex-direction: column; align-items: flex-start; gap: 20px; }
	.ht-services__grid { grid-template-columns: repeat(2, 1fr); }
	.ht-blog__head { flex-direction: column; align-items: flex-start; gap: 20px; }
	.ht-blog__grid { grid-template-columns: repeat(2, 1fr); }
	
	.ht-workflow__line { grid-template-columns: repeat(2, 1fr); }
	.htw-step:not(:last-child)::after { display: none; }
	
	.ht-benefits__grid { grid-template-columns: 1fr; gap: 60px; }
	.htb-status-badge { left: 20px; top: -20px; }
	
	.ht-faq__grid { grid-template-columns: 1fr; gap: 40px; }
	.ht-contact-box { grid-template-columns: 1fr; }
	.htc-map { min-height: 400px; }
}

@media (max-width: 768px) {
	.ht-actions { flex-direction: column; }
	.ht-stats__grid { grid-template-columns: 1fr; gap: 30px; }
	.ht-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
	.ht-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
	
	.ht-symptoms__grid { grid-template-columns: 1fr; }
	.ht-services__grid { grid-template-columns: 1fr; }
	.ht-blog__grid { grid-template-columns: 1fr; }
	.ht-workflow__line { grid-template-columns: 1fr; }
	.ht-cta-banner { padding: 40px 20px; }
}
