/* ================================================================
   UPHOLSTERY CLEANING — PREMIUM HIGIENE / TECH REDESIGN
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
.clean-theme {
	/* Palette */
	--clean-bg: #EFF8F7;
	/* Soft Aqua / Clean Background */
	--clean-surface: #FFFFFF;
	/* Pure White */
	--clean-primary: #00A9B5;
	/* Aqua Marine */
	--clean-primary-hover: #007D88;
	/* Dark Aqua */
	--clean-secondary: #B7D95A;
	/* Fresh Lime Green */
	--clean-heading: #102233;
	/* Deep Navy */
	--clean-text: #4C5D66;
	/* Muted Blue-Gray */
	--clean-border: #D8E8EA;
	/* Ice Blue Border */

	/* Typography */
	--clean-font-body: 'Inter', sans-serif;
	--clean-font-heading: 'Outfit', sans-serif;

	background-color: var(--clean-surface);
	color: var(--clean-text);
	font-family: var(--clean-font-body);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

.clean-theme * {
	box-sizing: border-box;
}

.clean-theme img {
	display: block;
	max-width: 100%;
}

.clean-container {
	margin: 0 auto;
	padding: 0 30px;
	width: min(1200px, 100%);
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.clean-eyebrow {
	align-items: center;
	color: var(--clean-primary);
	display: inline-flex;
	font-family: var(--clean-font-heading);
	font-size: 14px;
	font-weight: 700;
	gap: 10px;
	letter-spacing: 2px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.clean-eyebrow i {
	color: var(--clean-secondary);
	font-size: 18px;
}

.clean-title-display {
	color: var(--clean-heading);
	font-family: var(--clean-font-heading);
	font-size: clamp(38px, 5vw, 60px);
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 1.1;
	margin: 0 0 24px;
}

.clean-title-display em {
	color: var(--clean-primary);
	font-style: normal;
	position: relative;
}

.clean-title-display em::after {
	background: var(--clean-secondary);
	bottom: 5px;
	content: '';
	height: 8px;
	left: 0;
	opacity: 0.3;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.clean-section-header h2 {
	color: var(--clean-heading);
	font-family: var(--clean-font-heading);
	font-size: clamp(32px, 4vw, 46px);
	font-weight: 600;
	letter-spacing: -0.5px;
	line-height: 1.2;
	margin: 0 0 40px;
}

.text-center {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

/* Buttons */
.clean-btn-primary {
	background: linear-gradient(135deg, var(--clean-primary), var(--clean-primary-hover));
	border-radius: 8px;
	box-shadow: 0 10px 20px rgba(0, 169, 181, 0.2);
	color: #ffffff !important;
	display: inline-block;
	font-family: var(--clean-font-heading);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 18px 40px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.clean-btn-primary:hover {
	box-shadow: 0 15px 25px rgba(0, 169, 181, 0.3);
	transform: translateY(-3px);
}

.clean-btn-text {
	align-items: center;
	color: var(--clean-heading);
	display: inline-flex;
	font-family: var(--clean-font-heading);
	font-size: 15px;
	font-weight: 600;
	gap: 10px;
	text-decoration: none;
	transition: gap 0.3s ease, color 0.3s ease;
}

.clean-btn-text i {
	color: var(--clean-primary);
	transition: transform 0.3s ease;
}

.clean-btn-text:hover {
	color: var(--clean-primary);
	gap: 15px;
}

/* ================================================================
   HERO: AQUA BUBBLES
   ================================================================ */
.clean-hero {
	background: var(--clean-bg);
	padding: 120px 0 80px;
	position: relative;
}

.clean-hero-wave {
	bottom: -2px;
	/* Prevent sub-pixel gapping */
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.clean-hero-wave svg {
	display: block;
	width: 100%;
}

.clean-hero__wrap {
	align-items: center;
	display: grid;
	gap: 50px;
	grid-template-columns: minmax(0, 1.05fr) minmax(460px, 1.15fr);
	position: relative;
	z-index: 2;
}

.clean-lead {
	font-size: 18px;
	margin-bottom: 40px;
}

.clean-hero__buttons {
	align-items: center;
	display: flex;
	gap: 30px;
}

.clean-image-mask {
	position: relative;
}

.clean-image-mask>img {
	aspect-ratio: 5 / 4;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(16, 34, 51, 0.1);
	object-fit: cover;
	position: relative;
	width: 100%;
	z-index: 2;
}

/* Glass Card */
.clean-glass-card {
	align-items: center;
	backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	bottom: -30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	display: flex;
	gap: 16px;
	left: -40px;
	padding: 24px;
	position: absolute;
	z-index: 3;
}

.clean-glass-icon {
	align-items: center;
	background: var(--clean-secondary);
	border-radius: 50%;
	color: var(--clean-heading);
	display: flex;
	font-size: 24px;
	height: 50px;
	justify-content: center;
	width: 50px;
}

.clean-glass-text span {
	color: var(--clean-text);
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.clean-glass-text strong {
	color: var(--clean-heading);
	font-family: var(--clean-font-heading);
	font-size: 18px;
}

/* Bubbles */
.clean-bubble {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	position: absolute;
	z-index: 1;
}

.clean-bubble.b-1 {
	height: 80px;
	width: 80px;
	top: -30px;
	right: -20px;
}

.clean-bubble.b-2 {
	height: 40px;
	width: 40px;
	bottom: 50px;
	right: -40px;
}

.clean-bubble.b-3 {
	height: 120px;
	width: 120px;
	bottom: -60px;
	right: 80px;
	z-index: 3;
	backdrop-filter: blur(4px);
}

/* Stats */
.clean-hero__stats {
	display: flex;
	gap: 60px;
	margin-top: 80px;
	padding-top: 40px;
	position: relative;
	z-index: 2;
}

.clean-stat strong {
	color: var(--clean-primary);
	display: block;
	font-family: var(--clean-font-heading);
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
}

.clean-stat span {
	color: var(--clean-heading);
	font-weight: 500;
}

/* ================================================================
   SERVICES
   ================================================================ */
.clean-services {
	padding: 120px 0;
}

.clean-services__grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(4, 1fr);
}

.clean-service-card {
	background: var(--clean-surface);
	border: 1px solid var(--clean-border);
	border-radius: 16px;
	padding: 40px 30px;
	position: relative;
	transition: all 0.4s ease;
}

.clean-service-card:hover {
	border-color: transparent;
	box-shadow: 0 20px 40px rgba(16, 34, 51, 0.06);
	transform: translateY(-5px);
}

.clean-service-icon {
	color: var(--clean-primary);
	font-size: 40px;
	margin-bottom: 24px;
}

.clean-service-card h3 {
	color: var(--clean-heading);
	font-family: var(--clean-font-heading);
	font-size: 22px;
	margin: 0 0 16px;
}

.clean-service-card h3 a {
	color: inherit;
	text-decoration: none;
}

.clean-service-card h3 a:hover {
	color: var(--clean-primary);
}

.clean-service-card p {
	font-size: 15px;
	margin: 0 0 24px;
}

.clean-service-line {
	background: var(--clean-bg);
	border-radius: 2px;
	height: 4px;
	width: 40px;
}

.clean-service-card:hover .clean-service-line {
	background: var(--clean-secondary);
}

/* ================================================================
   BEFORE / AFTER
   ================================================================ */
.clean-comparison {
	background: var(--clean-bg);
	padding: 120px 0;
}

.clean-comparison__grid {
	align-items: center;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1.2fr;
}

.clean-checklist {
	display: flex;
	flex-direction: column;
	gap: 16px;
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
}

.clean-checklist li {
	align-items: center;
	color: var(--clean-heading);
	display: flex;
	font-family: var(--clean-font-heading);
	font-weight: 500;
	gap: 12px;
}

.clean-checklist i {
	color: var(--clean-secondary);
	font-size: 20px;
}

.clean-comparison__visual {
	position: relative;
	width: 100%;
}

.clean-ba-slider {
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 169, 181, 0.2);
	aspect-ratio: 4/3;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.clean-ba-after,
.clean-ba-before {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.clean-ba-after img,
.clean-ba-before img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* Before image is clipped based on the CSS variable --slider-pos */
.clean-ba-before {
	clip-path: polygon(0 0, var(--slider-pos) 0, var(--slider-pos) 100%, 0 100%);
	z-index: 2;
}

/* The actual invisible input that powers the interaction */
.clean-ba-range {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: transparent;
	cursor: ew-resize;
	height: 100%;
	left: 0;
	margin: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10;
}

/* The visible handle that moves with the slider */
.clean-ba-handle {
	align-items: center;
	background: #fff;
	border-radius: 50px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	display: flex;
	height: 100%;
	justify-content: center;
	left: var(--slider-pos);
	pointer-events: none;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 4px;
	/* The white line dividing the sides */
	z-index: 5;
}

.clean-ba-arrows {
	align-items: center;
	background: var(--clean-primary);
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	color: #fff;
	display: flex;
	font-size: 14px;
	gap: 6px;
	height: 46px;
	justify-content: center;
	position: absolute;
	width: 46px;
}

.clean-tag-red,
.clean-tag-green {
	align-items: center;
	border-radius: 30px;
	color: #fff;
	display: inline-flex;
	font-size: 13px;
	font-weight: 600;
	gap: 8px;
	padding: 8px 16px;
	position: absolute;
	text-transform: uppercase;
	z-index: 3;
}

.clean-tag-red {
	background: #FF4B4B;
	top: 20px;
	left: 20px;
}

.clean-tag-green {
	background: var(--clean-primary);
	bottom: 20px;
	right: 20px;
}

/* ================================================================
   PACKAGES
   ================================================================ */
.clean-packages {
	padding: 120px 0;
}

.clean-packages__header {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 48px;
	text-align: left;
}

.clean-packages__header h2 {
	margin-bottom: 0;
}

.clean-packages__grid {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, 1fr);
}

.clean-pkg-card {
	background: var(--clean-surface);
	border: 1px solid var(--clean-border);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.clean-pkg-card:hover {
	border-color: var(--clean-primary);
	box-shadow: 0 15px 30px rgba(0, 169, 181, 0.1);
}

.clean-pkg-image {
	position: relative;
}

.clean-pkg-image img {
	aspect-ratio: 16/10;
	object-fit: cover;
	width: 100%;
}

.clean-pkg-tag {
	background: var(--clean-secondary);
	border-radius: 20px;
	color: var(--clean-heading);
	font-size: 12px;
	font-weight: 700;
	left: 20px;
	padding: 6px 14px;
	position: absolute;
	top: 20px;
	text-transform: uppercase;
}

.clean-pkg-content {
	padding: 30px;
}

.clean-pkg-content h3 {
	color: var(--clean-heading);
	font-family: var(--clean-font-heading);
	font-size: 22px;
	margin: 0 0 10px;
}

.clean-pkg-content h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.clean-pkg-content h3 a:hover {
	color: var(--clean-primary);
}

.clean-pkg-card__excerpt {
	display: -webkit-box;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	text-overflow: ellipsis;
}

.clean-pkg-image {
	display: block;
	text-decoration: none;
}

.clean-pkg-footer {
	align-items: center;
	border-top: 1px solid var(--clean-border);
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	padding-top: 20px;
}

.clean-pkg-footer strong {
	color: var(--clean-primary);
	font-size: 18px;
}

.clean-pkg-footer a {
	align-items: center;
	background: var(--clean-bg);
	border-radius: 50%;
	color: var(--clean-primary);
	display: flex;
	height: 40px;
	justify-content: center;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease;
	width: 40px;
}

.clean-pkg-footer a:hover {
	background: var(--clean-primary);
	color: #fff;
}

/* ================================================================
   PROCESS TIMELINE
   ================================================================ */
.clean-process {
	background: var(--clean-bg);
	padding: 120px 0;
}

.clean-process__box {
	background: var(--clean-surface);
	border-radius: 30px;
	padding: clamp(32px, 5vw, 72px);
}

.clean-process__head {
	margin-bottom: clamp(32px, 4vw, 56px);
	max-width: 720px;
}

.clean-process__head h2 {
	color: var(--clean-heading);
	font-family: var(--clean-font-heading);
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.2;
	margin: 12px 0 16px;
}

.clean-process__lead {
	color: var(--clean-text-muted);
	font-size: 17px;
	line-height: 1.7;
	margin: 0;
}

.clean-process__layout {
	align-items: start;
	display: grid;
	gap: clamp(32px, 4vw, 56px);
	grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
}

.clean-process__layout--full {
	grid-template-columns: minmax(0, 1fr);
	max-width: 760px;
}

.clean-process__aside {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: sticky;
	top: 110px;
}

.clean-process__visual {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.clean-process__visual::after {
	background: linear-gradient(180deg, transparent 55%, rgba(15, 76, 92, 0.35) 100%);
	content: '';
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.clean-process__visual img {
	aspect-ratio: 4 / 3;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.clean-process__highlights {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.clean-process__highlights li {
	align-items: flex-start;
	background: var(--clean-bg);
	border: 1px solid rgba(15, 76, 92, 0.08);
	border-radius: 14px;
	color: var(--clean-heading);
	display: flex;
	font-size: 15px;
	gap: 14px;
	line-height: 1.5;
	padding: 14px 16px;
}

.clean-process__highlight-icon {
	align-items: center;
	background: rgba(0, 168, 181, 0.12);
	border-radius: 10px;
	color: var(--clean-primary);
	display: inline-flex;
	flex-shrink: 0;
	font-size: 15px;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.clean-process__timeline {
	display: flex;
	flex-direction: column;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.clean-process__timeline::before {
	background: linear-gradient(180deg, var(--clean-primary) 0%, rgba(0, 168, 181, 0.2) 100%);
	border-radius: 2px;
	bottom: 28px;
	content: '';
	left: 27px;
	position: absolute;
	top: 28px;
	width: 2px;
}

.clean-process__step {
	display: grid;
	gap: 20px;
	grid-template-columns: 56px minmax(0, 1fr);
	padding: 0 0 32px;
	position: relative;
}

.clean-process__step:last-child {
	padding-bottom: 0;
}

.clean-process__step-marker {
	align-items: center;
	background: var(--clean-surface);
	border: 2px solid rgba(0, 168, 181, 0.25);
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(15, 76, 92, 0.08);
	color: var(--clean-primary);
	display: flex;
	font-family: var(--clean-font-heading);
	font-size: 18px;
	font-weight: 700;
	height: 56px;
	justify-content: center;
	position: relative;
	width: 56px;
	z-index: 1;
}

.clean-process__step-body {
	background: var(--clean-bg);
	border: 1px solid rgba(15, 76, 92, 0.06);
	border-radius: 16px;
	padding: 22px 24px;
}

.clean-process__step-body h3 {
	color: var(--clean-heading);
	font-family: var(--clean-font-heading);
	font-size: 20px;
	line-height: 1.3;
	margin: 0 0 8px;
}

.clean-process__step-body p {
	color: var(--clean-text-muted);
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

/* ================================================================
   ABOUT EXPERTISE
   ================================================================ */
.clean-about {
	padding: 120px 0;
}

.clean-about__grid {
	align-items: center;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1fr;
}

.clean-about__visual {
	position: relative;
}

.clean-about__visual img {
	border-radius: 20px;
}

.clean-tech-layer {
	align-items: center;
	background: var(--clean-primary);
	border-radius: 12px;
	bottom: -20px;
	box-shadow: 0 15px 30px rgba(0, 169, 181, 0.3);
	color: #fff;
	display: inline-flex;
	font-family: var(--clean-font-heading);
	font-size: 18px;
	font-weight: 600;
	gap: 15px;
	padding: 20px 30px;
	position: absolute;
	right: -20px;
}

/* ================================================================
   BLOG
   ================================================================ */
.clean-blog {
	background: var(--clean-bg);
	padding: 120px 0;
}

.clean-blog__header {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 48px;
	text-align: left;
}

.clean-blog__header .clean-section-header {
	margin-bottom: 0;
}

.clean-blog__grid {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(3, 1fr);
}

.clean-blog-card {
	background: var(--clean-surface);
	border: 1px solid var(--clean-border);
	border-radius: 20px;
	box-shadow: 0 12px 30px rgba(16, 34, 51, 0.06);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.clean-blog-card:hover {
	box-shadow: 0 18px 40px rgba(0, 169, 181, 0.14);
	transform: translateY(-4px);
}

.clean-blog-card__image {
	display: block;
	position: relative;
}

.clean-blog-card__image img {
	aspect-ratio: 16 / 10;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.clean-blog-card__tag {
	background: var(--clean-primary);
	border-radius: 30px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	left: 16px;
	padding: 6px 12px;
	position: absolute;
	text-transform: uppercase;
	top: 16px;
}

.clean-blog-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
}

.clean-blog-card__content time {
	color: var(--clean-primary);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.clean-blog-card__content h3 {
	font-family: var(--clean-font-heading);
	font-size: 22px;
	line-height: 1.3;
	margin: 0;
}

.clean-blog-card__content h3 a {
	color: var(--clean-heading);
	text-decoration: none;
	transition: color 0.2s ease;
}

.clean-blog-card__content h3 a:hover {
	color: var(--clean-primary);
}

.clean-blog-card__excerpt {
	display: -webkit-box;
	flex: 1;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	text-overflow: ellipsis;
}

.clean-blog-card__link {
	align-items: center;
	color: var(--clean-primary);
	display: inline-flex;
	font-family: var(--clean-font-heading);
	font-size: 14px;
	font-weight: 600;
	gap: 8px;
	margin-top: auto;
	text-decoration: none;
}

.clean-blog-card__link:hover {
	color: var(--clean-primary-hover);
}

/* ================================================================
   FAQ (ACCORDION)
   ================================================================ */
.clean-faq {
	background: var(--clean-bg);
	padding: 120px 0;
}

.clean-faq__wrapper {
	max-width: 800px;
}

.clean-accordion {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.clean-acc-item {
	background: var(--clean-surface);
	border: 1px solid var(--clean-border);
	border-radius: 12px;
	overflow: hidden;
}

.clean-acc-title {
	align-items: center;
	color: var(--clean-heading);
	cursor: pointer;
	display: flex;
	font-family: var(--clean-font-heading);
	font-size: 18px;
	font-weight: 600;
	justify-content: space-between;
	list-style: none;
	padding: 24px 30px;
}

.clean-acc-title::-webkit-details-marker {
	display: none;
}

.clean-acc-indicator {
	background: var(--clean-bg);
	border-radius: 50%;
	display: block;
	height: 36px;
	position: relative;
	transition: background 0.3s ease;
	width: 36px;
}

.clean-acc-indicator::before,
.clean-acc-indicator::after {
	background: var(--clean-primary);
	content: '';
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.clean-acc-indicator::before {
	height: 2px;
	width: 14px;
}

.clean-acc-indicator::after {
	height: 14px;
	width: 2px;
	transition: transform 0.3s ease;
}

.clean-acc-item[open] .clean-acc-indicator::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

.clean-acc-item[open] .clean-acc-indicator {
	background: var(--clean-primary);
}

.clean-acc-item[open] .clean-acc-indicator::before {
	background: #fff;
}

.clean-acc-content {
	border-top: 1px solid var(--clean-border);
	margin: 0;
	padding: 24px 30px;
}

/* ================================================================
   CONTACT
   ================================================================ */
.clean-contact {
	padding: 120px 0;
}

.clean-contact__grid {
	display: grid;
	gap: 60px;
	grid-template-columns: 1fr 1fr;
}

.clean-contact-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
}

.clean-contact-list li {
	display: flex;
	gap: 20px;
}

.clean-contact-list i {
	background: var(--clean-bg);
	border-radius: 12px;
	color: var(--clean-primary);
	display: flex;
	font-size: 20px;
	height: 50px;
	justify-content: center;
	align-items: center;
	/* keep icon centered */
	width: 50px;
	flex-shrink: 0;
}

.clean-contact-list strong {
	color: var(--clean-heading);
	display: block;
	font-family: var(--clean-font-heading);
	font-size: 16px;
	margin-bottom: 6px;
}

.clean-contact-list p {
	font-size: 15px;
	margin: 0;
}

.clean-map-wrapper {
	border-radius: 20px;
	height: 100%;
	min-height: 400px;
	overflow: hidden;
	width: 100%;
}

.clean-map-wrapper iframe {
	height: 100%;
	width: 100%;
}

.clean-map-dummy {
	align-items: center;
	background: var(--clean-bg);
	color: var(--clean-primary);
	display: flex;
	flex-direction: column;
	font-family: var(--clean-font-heading);
	font-size: 20px;
	font-weight: 600;
	gap: 16px;
	height: 100%;
	justify-content: center;
}

.clean-map-dummy i {
	font-size: 40px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
	.clean-hero__wrap {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.clean-eyebrow,
	.clean-hero__buttons {
		justify-content: center;
	}

	.clean-glass-card {
		left: 20px;
		bottom: -20px;
	}

	.clean-hero__stats {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}

	.clean-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.clean-comparison__grid {
		grid-template-columns: 1fr;
	}

	.clean-comparison__visual {
		order: -1;
	}

	.clean-packages__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.clean-process__layout {
		grid-template-columns: 1fr;
	}

	.clean-process__aside {
		position: static;
	}

	.clean-process__visual img {
		max-height: 280px;
	}

	.clean-about__grid {
		grid-template-columns: 1fr;
	}

	.clean-tech-layer {
		right: auto;
		left: 20px;
		bottom: -20px;
	}

	.clean-contact__grid {
		grid-template-columns: 1fr;
	}

	.clean-blog__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.clean-packages__header {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.clean-hero__buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.clean-btn-primary,
	.clean-btn-text {
		justify-content: center;
	}

	.clean-services__grid {
		grid-template-columns: 1fr;
	}

	.clean-comparison__visual {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.clean-compare-card.dirty {
		transform: none;
	}

	.clean-packages__grid {
		grid-template-columns: 1fr;
	}

	.clean-blog__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.clean-blog__grid {
		grid-template-columns: 1fr;
	}
}
