/**
 * EazyClean SEO - Frontend Styles
 * Dark glassmorphism design matching support.eazyclean.com
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* === CSS Variables === */
:root {
	--ec-primary: #00d3f2;
	--ec-primary-dark: #00b8db;
	--ec-secondary: #155dfc;
	--ec-bg: #0f1729;
	--ec-bg-card: rgba(0, 0, 0, 0.3);
	--ec-text: #ffffff;
	--ec-text-body: rgba(255, 255, 255, 0.9);
	--ec-text-muted: #90a1b9;
	--ec-text-dim: rgba(255, 255, 255, 0.6);
	--ec-border: rgba(255, 255, 255, 0.1);
	--ec-star: #00d3f2;
	--ec-radius: 16px;
	--ec-radius-sm: 12px;
	--ec-radius-pill: 9999px;
	--ec-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--ec-shadow-glow: 0 0 20px rgba(6, 182, 212, 0.3);
	--ec-glass-blur: blur(24px);
	--ec-gradient-btn: linear-gradient(to right, #00b8db, #155dfc);
	--ec-gradient-text: linear-gradient(to right, #00d3f2, #ffffff 50%, #00d3f2);
	--ec-max-width: 1180px;
	--ec-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--ec-font-heading: 'Outfit', sans-serif;
	--ec-font-body: 'Inter', sans-serif;
}

/* === Base Container === */
.eazyclean-seo-container {
	max-width: var(--ec-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.eazyclean-seo-landing {
	font-family: var(--ec-font-body);
	color: var(--ec-text-body);
	line-height: 1.7;
	font-size: 17px;
	background: var(--ec-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.eazyclean-seo-landing * {
	box-sizing: border-box;
}

/* === Breadcrumb === */
.eazyclean-seo-breadcrumb {
	padding: 20px 0;
	font-size: 14px;
	color: var(--ec-text-muted);
}

.eazyclean-seo-breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.eazyclean-seo-breadcrumb li::after {
	content: "\203A";
	margin-left: 10px;
	color: var(--ec-text-dim);
	font-size: 16px;
}

.eazyclean-seo-breadcrumb li:last-child::after {
	display: none;
}

.eazyclean-seo-breadcrumb a {
	color: var(--ec-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.eazyclean-seo-breadcrumb a:hover {
	color: #ffffff;
}

/* === Hero Section === */
.eazyclean-seo-hero {
	background: var(--ec-bg);
	color: #ffffff;
	padding: 80px 60px;
	border-radius: var(--ec-radius);
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}

.eazyclean-seo-hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 60%;
	background: radial-gradient(ellipse at 70% 50%, rgba(0, 211, 242, 0.08), transparent 70%);
	pointer-events: none;
}

.eazyclean-seo-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.eazyclean-seo-hero-reverse .eazyclean-seo-hero-inner {
	direction: rtl;
}

.eazyclean-seo-hero-reverse .eazyclean-seo-hero-inner > * {
	direction: ltr;
}

.eazyclean-seo-hero-content {
	max-width: 600px;
}

.eazyclean-seo-h1 {
	font-family: var(--ec-font-heading);
	font-size: 2.8rem;
	font-weight: 300;
	margin: 0 0 20px 0;
	line-height: 1.1;
	color: #ffffff;
	letter-spacing: -0.025em;
	background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.6));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.eazyclean-seo-hero-sub {
	font-family: var(--ec-font-body);
	font-size: 1.1rem;
	color: var(--ec-text-body);
	margin-bottom: 32px;
	line-height: 1.7;
}

.eazyclean-seo-hero-image {
	position: relative;
	border-radius: var(--ec-radius);
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.eazyclean-seo-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: var(--ec-radius);
}

/* Hero Slider */
.eazyclean-seo-hero-slider {
	position: relative;
	border-radius: var(--ec-radius);
	overflow: hidden;
	aspect-ratio: 1/1;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
}

.eazyclean-seo-hero-slider-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.eazyclean-seo-hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.eazyclean-seo-hero-slide.is-active {
	opacity: 1;
}

.eazyclean-seo-hero-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.eazyclean-seo-hero-slider-dots {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 5;
}

.eazyclean-seo-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}

.eazyclean-seo-slider-dot.is-active {
	background: var(--ec-cyan, #06b6d4);
	border-color: var(--ec-cyan, #06b6d4);
}

.eazyclean-seo-slider-dot:hover {
	border-color: var(--ec-cyan, #06b6d4);
}

.eazyclean-seo-hero-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 280px;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border-radius: var(--ec-radius);
}

.eazyclean-seo-hero-image-placeholder svg {
	width: 80px;
	height: 80px;
	opacity: 0.3;
	color: var(--ec-primary);
}

.eazyclean-seo-hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.eazyclean-seo-hero-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 18px;
	background: var(--ec-bg-card);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius-sm);
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--ec-text-body);
	margin-bottom: 8px;
	backdrop-filter: var(--ec-glass-blur);
}

.eazyclean-seo-hero-notice .eazyclean-seo-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 1px;
	opacity: 0.7;
}

.eazyclean-seo-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: var(--ec-bg-card);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius-pill);
	font-family: var(--ec-font-heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--ec-primary);
	margin-bottom: 16px;
	backdrop-filter: var(--ec-glass-blur);
}

/* === Buttons === */
.eazyclean-seo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: var(--ec-gradient-btn);
	color: #ffffff;
	border: none;
	border-radius: var(--ec-radius-sm);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: var(--ec-transition);
	font-family: var(--ec-font-body);
	box-shadow: var(--ec-shadow-glow);
}

.eazyclean-seo-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(6, 182, 212, 0.45);
	color: #ffffff;
	text-decoration: none;
	filter: brightness(1.1);
}

.eazyclean-seo-btn:active {
	transform: translateY(0);
}

.eazyclean-seo-btn .eazyclean-seo-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.eazyclean-seo-btn-primary {
	background: var(--ec-gradient-btn);
	color: #ffffff;
	box-shadow: var(--ec-shadow-glow);
}

.eazyclean-seo-btn-primary:hover {
	box-shadow: 0 0 30px rgba(6, 182, 212, 0.45);
	filter: brightness(1.1);
}

.eazyclean-seo-btn-lg {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

.eazyclean-seo-btn-lg .eazyclean-seo-icon {
	width: 22px;
	height: 22px;
}

/* === Sections === */
.eazyclean-seo-section {
	padding: 64px 0;
}

.eazyclean-seo-intro + .eazyclean-seo-section {
	padding-top: 32px;
}

.eazyclean-seo-section + .eazyclean-seo-section {
	border-top: 1px solid var(--ec-border);
}

.eazyclean-seo-faq + .eazyclean-seo-section,
.eazyclean-seo-section + .eazyclean-seo-faq,
.eazyclean-seo-cloud-connect + .eazyclean-seo-section,
.eazyclean-seo-section + .eazyclean-seo-cloud-connect,
.eazyclean-seo-tory-chat + .eazyclean-seo-section,
.eazyclean-seo-section + .eazyclean-seo-tory-chat,
.eazyclean-seo-cta,
.eazyclean-seo-faq,
.eazyclean-seo-tory-chat {
	border-top: none !important;
}

.eazyclean-seo-section h2 {
	font-family: var(--ec-font-heading);
	font-size: 1.85rem;
	font-weight: 700;
	color: var(--ec-text);
	margin: 0 0 12px 0;
	letter-spacing: -0.01em;
}

.eazyclean-seo-section-subtitle {
	color: var(--ec-text-muted);
	font-size: 1.05rem;
	max-width: 680px;
	margin-bottom: 40px;
	line-height: 1.7;
}

/* === Grid Layout === */
.eazyclean-seo-grid {
	display: grid;
	gap: 24px;
}

.eazyclean-seo-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.eazyclean-seo-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.eazyclean-seo-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* === Cards (Glassmorphism) === */
.eazyclean-seo-card {
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	padding: 32px;
	transition: var(--ec-transition);
	position: relative;
	box-shadow: var(--ec-shadow);
}

.eazyclean-seo-card:hover {
	box-shadow: var(--ec-shadow), 0 0 20px rgba(0, 211, 242, 0.1);
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.2);
}

.eazyclean-seo-card-icon {
	width: 52px;
	height: 52px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 211, 242, 0.1);
	border: 1px solid rgba(0, 211, 242, 0.2);
	border-radius: 14px;
	color: var(--ec-primary);
}

.eazyclean-seo-card-icon svg {
	width: 26px;
	height: 26px;
}

.eazyclean-seo-card h3 {
	font-family: var(--ec-font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--ec-text);
	margin: 0 0 10px 0;
}

.eazyclean-seo-card p {
	font-size: 0.95rem;
	color: var(--ec-text-muted);
	margin: 0;
	line-height: 1.65;
}

/* === Section with Soft Background === */
.eazyclean-seo-section-soft {
	background: rgba(0, 0, 0, 0.15);
	margin-left: -24px;
	margin-right: -24px;
	padding-left: 24px;
	padding-right: 24px;
	border-top: none;
}

.eazyclean-seo-section-soft + .eazyclean-seo-section {
	border-top: none;
}

/* === Cloud Connect Section === */
.eazyclean-seo-cloud-connect {
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	padding: 48px 40px;
	border-radius: var(--ec-radius);
}

.eazyclean-seo-cloud-connect-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.eazyclean-seo-cloud-connect-image {
	border-radius: var(--ec-radius);
	overflow: hidden;
	aspect-ratio: 16/9;
}

.eazyclean-seo-cloud-connect-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* === Third-Party Section === */
.eazyclean-seo-manufacturer-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 28px 0;
}

.eazyclean-seo-manufacturer-badge {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius-pill);
	font-size: 14px;
	font-weight: 600;
	color: var(--ec-text);
	transition: var(--ec-transition);
}

.eazyclean-seo-manufacturer-badge:hover {
	border-color: var(--ec-primary);
	box-shadow: var(--ec-shadow-glow);
	color: var(--ec-primary);
}

.eazyclean-seo-disclaimer {
	font-size: 0.88rem;
	color: var(--ec-text-muted);
	padding: 16px 20px;
	background: var(--ec-bg-card);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius-sm);
	line-height: 1.6;
	backdrop-filter: var(--ec-glass-blur);
}

/* === Reviews Section === */
.eazyclean-seo-rating-widget {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 32px;
	padding: 24px 32px;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	box-shadow: var(--ec-shadow);
}

.eazyclean-seo-stars {
	display: flex;
	gap: 3px;
}

.eazyclean-seo-star {
	font-size: 26px;
	color: var(--ec-star);
}

.eazyclean-seo-star-half {
	position: relative;
	color: rgba(255, 255, 255, 0.15);
}

.eazyclean-seo-star-half::before {
	content: "\2605";
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	overflow: hidden;
	color: var(--ec-star);
}

.eazyclean-seo-rating-text {
	font-size: 0.95rem;
	color: var(--ec-text-muted);
}

.eazyclean-seo-rating-text strong {
	font-size: 1.4rem;
	color: var(--ec-text);
	font-weight: 700;
}

.eazyclean-seo-testimonial {
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	padding: 32px;
	margin: 0;
	position: relative;
	box-shadow: var(--ec-shadow);
}

.eazyclean-seo-testimonial::before {
	content: "\201C";
	position: absolute;
	top: 16px;
	left: 24px;
	font-size: 48px;
	color: var(--ec-primary);
	opacity: 0.3;
	font-family: Georgia, serif;
	line-height: 1;
}

.eazyclean-seo-testimonial p {
	font-size: 1.05rem;
	font-style: italic;
	margin: 0 0 16px 0;
	color: var(--ec-text-body);
	padding-left: 8px;
}

.eazyclean-seo-testimonial footer {
	font-size: 0.9rem;
	padding-left: 8px;
}

.eazyclean-seo-testimonial cite {
	font-weight: 600;
	color: var(--ec-text);
	font-style: normal;
}

.eazyclean-seo-testimonial-company {
	color: var(--ec-text-muted);
}

.eazyclean-seo-testimonial-company::before {
	content: " \2013 ";
}

/* === FAQ Accordion === */
.eazyclean-seo-faq {
	background: rgba(0, 0, 0, 0.15);
	margin-left: -24px;
	margin-right: -24px;
	padding-left: 24px;
	padding-right: 24px;
	border-radius: var(--ec-radius);
}

.eazyclean-seo-faq-list {
	max-width: 100%;
}

.eazyclean-seo-faq-item {
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius-sm);
	margin-bottom: 10px;
	overflow: hidden;
	transition: var(--ec-transition);
}

.eazyclean-seo-faq-item:hover {
	border-color: rgba(0, 211, 242, 0.3);
}

.eazyclean-seo-faq-item.active {
	border-color: var(--ec-primary);
	box-shadow: 0 0 15px rgba(0, 211, 242, 0.1);
}

.eazyclean-seo-faq-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 1rem;
	font-weight: 600;
	color: var(--ec-text);
	transition: var(--ec-transition);
	gap: 16px;
}

.eazyclean-seo-faq-toggle:hover {
	color: var(--ec-primary);
}

.eazyclean-seo-faq-chevron {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: var(--ec-primary);
}

.eazyclean-seo-faq-item.active .eazyclean-seo-faq-chevron {
	transform: rotate(180deg);
}

.eazyclean-seo-faq-answer {
	display: none;
	padding: 0 24px 24px;
	color: var(--ec-text-body);
	line-height: 1.7;
}

.eazyclean-seo-faq-item.active .eazyclean-seo-faq-answer {
	display: block;
}

.eazyclean-seo-faq-answer p {
	margin: 0;
}

/* === CTA Section === */
.eazyclean-seo-cta {
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	color: #ffffff;
	padding: 80px 60px;
	margin-top: 24px;
	border-radius: var(--ec-radius);
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: var(--ec-shadow);
}

.eazyclean-seo-cta::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(ellipse, rgba(0, 211, 242, 0.08), transparent 70%);
	pointer-events: none;
}

.eazyclean-seo-cta-inner {
	position: relative;
	z-index: 1;
}

.eazyclean-seo-cta h2 {
	font-family: var(--ec-font-heading);
	color: #ffffff;
	font-size: 2.1rem;
	letter-spacing: -0.01em;
}

.eazyclean-seo-cta p {
	color: var(--ec-text-body);
	max-width: 600px;
	margin: 0 auto 32px;
	font-size: 1.05rem;
}

.eazyclean-seo-cta-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.eazyclean-seo-cta-divider {
	color: var(--ec-text-dim);
	font-size: 0.9rem;
	font-weight: 500;
}

.eazyclean-seo-btn-outline {
	background: transparent;
	border: 1px solid var(--ec-border);
	color: var(--ec-text-muted);
	box-shadow: none;
}

.eazyclean-seo-btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
	box-shadow: none;
}

.eazyclean-seo-cta .eazyclean-seo-btn-primary {
	background: var(--ec-gradient-btn);
	color: #ffffff;
	box-shadow: var(--ec-shadow-glow);
}

.eazyclean-seo-cta .eazyclean-seo-btn-primary:hover {
	box-shadow: 0 0 30px rgba(6, 182, 212, 0.45);
	filter: brightness(1.1);
}

/* === Tory AI Chat Section === */
.eazyclean-seo-tory-chat {
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	padding: 64px 40px;
	margin-top: 32px;
	margin-bottom: 32px;
	box-shadow: var(--ec-shadow);
}

.eazyclean-seo-tory-chat-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
}

.eazyclean-seo-tory-chat-visual {
	width: 220px;
	flex-shrink: 0;
}

.eazyclean-seo-tory-chat-visual img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.eazyclean-seo-tory-chat-content h2 {
	margin-top: 0;
}

.eazyclean-seo-tory-chat-content p {
	color: var(--ec-text-body);
	line-height: 1.7;
	margin: 0 0 12px 0;
	max-width: 680px;
}

.eazyclean-seo-tory-chat-hint {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--ec-primary) !important;
	font-weight: 500;
	font-size: 0.95rem;
}

.eazyclean-seo-tory-chat-hint .eazyclean-seo-icon {
	width: 18px;
	height: 18px;
	color: var(--ec-primary);
}

/* Chat Simulation */
.eazyclean-seo-chat-sim {
	margin-top: 24px;
	max-width: 420px;
	height: 190px;
	overflow: hidden;
}

.eazyclean-seo-chat-sim-bubble {
	border-radius: 18px;
	font-size: 0.92rem !important;
	line-height: 1.5 !important;
	max-height: 0;
	padding: 0 18px;
	margin-bottom: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease, margin-bottom 0.4s ease, opacity 0.3s ease;
}

.eazyclean-seo-chat-sim-bubble.visible {
	max-height: 100px;
	padding: 12px 18px;
	margin-bottom: 12px;
	opacity: 1;
}

.eazyclean-seo-chat-sim-user {
	background: var(--ec-gradient-btn);
	color: #fff;
	margin-left: auto;
	width: fit-content;
	border-bottom-right-radius: 4px;
}

.eazyclean-seo-chat-sim-tory {
	background: rgba(255, 255, 255, 0.1);
	color: var(--ec-text-body);
	width: fit-content;
	border-bottom-left-radius: 4px;
	border: 1px solid var(--ec-border);
}

.eazyclean-seo-chat-sim-tory + .eazyclean-seo-chat-sim-tory {
	border-top-left-radius: 4px;
}

.eazyclean-seo-chat-sim-arrow {
	padding: 10px 14px;
	width: fit-content;
	color: var(--ec-primary);
}

.eazyclean-seo-chat-sim-arrow.visible svg {
	animation: ecPulse 1.2s ease-in-out infinite;
}

@keyframes ecPulse {
	0%, 100% { transform: scale(1); opacity: 0.7; }
	50% { transform: scale(1.2); opacity: 1; }
}

/* === Related Services === */
.eazyclean-seo-related-link {
	display: block;
	padding: 24px;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	text-decoration: none;
	transition: var(--ec-transition);
}

.eazyclean-seo-related-link:hover {
	box-shadow: var(--ec-shadow-glow);
	border-color: var(--ec-primary);
	transform: translateY(-2px);
}

.eazyclean-seo-related-service {
	display: inline-block;
	font-family: var(--ec-font-heading);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--ec-primary);
	margin-bottom: 6px;
}

.eazyclean-seo-related-title {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ec-text);
}

/* === Related Pages Widget (Shortcode) === */
.eazyclean-seo-related-pages-widget {
	padding: 48px 0;
}

.eazyclean-seo-related-pages-widget h2 {
	font-family: var(--ec-font-heading);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--ec-text);
	margin: 0 0 24px 0;
}

.eazyclean-seo-related-pages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.eazyclean-seo-related-page-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	text-decoration: none;
	transition: var(--ec-transition);
}

.eazyclean-seo-related-page-card:hover {
	border-color: var(--ec-primary);
	box-shadow: var(--ec-shadow-glow);
	transform: translateY(-2px);
}

.eazyclean-seo-related-page-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 10px;
	background: rgba(0, 211, 242, 0.1);
	color: var(--ec-primary);
	border: 1px solid rgba(0, 211, 242, 0.2);
}

.eazyclean-seo-related-page-card:hover .eazyclean-seo-related-page-icon {
	background: var(--ec-primary);
	color: #ffffff;
	border-color: var(--ec-primary);
}

.eazyclean-seo-related-page-title {
	flex: 1;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ec-text);
	line-height: 1.3;
}

.eazyclean-seo-related-page-arrow {
	font-size: 1.1rem;
	color: var(--ec-text-muted);
	transition: var(--ec-transition);
}

.eazyclean-seo-related-page-card:hover .eazyclean-seo-related-page-arrow {
	color: var(--ec-primary);
	transform: translateX(3px);
}

@media (max-width: 768px) {
	.eazyclean-seo-related-pages-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.eazyclean-seo-related-pages-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* === Image Sections === */
.eazyclean-seo-mood-image {
	border-radius: var(--ec-radius);
	overflow: hidden;
	margin: 32px 0;
	aspect-ratio: 21/9;
	background: var(--ec-bg-card);
}

.eazyclean-seo-mood-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* === Prose Content (Expert Text) === */
.eazyclean-seo-prose {
	max-width: 820px;
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--ec-text-body);
}

.eazyclean-seo-prose p {
	margin: 0 0 20px 0;
}

.eazyclean-seo-prose p:last-child {
	margin-bottom: 0;
}

.eazyclean-seo-prose h3 {
	font-family: var(--ec-font-heading);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--ec-text);
	margin: 32px 0 12px 0;
}

.eazyclean-seo-prose h3:first-child {
	margin-top: 0;
}

/* === Process Diagram (Keyword Pages) === */
.eazyclean-seo-process-diagram {
	margin-top: 48px;
	padding: 32px;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border-radius: var(--ec-radius);
	border: 1px solid var(--ec-border);
	box-shadow: var(--ec-shadow);
}

.eazyclean-seo-process-diagram h3 {
	font-family: var(--ec-font-heading);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--ec-text);
	margin: 0 0 24px 0;
	text-align: center;
}

.eazyclean-seo-process-diagram-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.eazyclean-seo-process-svg {
	width: 100%;
	max-width: 900px;
	height: auto;
	margin: 0 auto;
	display: block;
	font-family: var(--ec-font-body);
}

@media (max-width: 768px) {
	.eazyclean-seo-process-diagram {
		padding: 20px 16px;
		margin-top: 32px;
	}

	.eazyclean-seo-process-svg {
		min-width: 600px;
	}
}

/* === Substances Showcase === */
.eazyclean-seo-substances {
	text-align: center;
}

.eazyclean-seo-substances .eazyclean-seo-section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

.eazyclean-seo-substance-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	max-width: 900px;
	margin: 0 auto 32px;
}

.eazyclean-seo-substance-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius-pill);
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--ec-text);
	text-decoration: none;
	transition: var(--ec-transition);
	white-space: nowrap;
}

.eazyclean-seo-substance-pill:hover {
	background: var(--ec-primary);
	color: #ffffff;
	border-color: var(--ec-primary);
	transform: translateY(-1px);
	box-shadow: var(--ec-shadow-glow);
}

.eazyclean-seo-substances-cta {
	margin-top: 8px;
}

.eazyclean-seo-substances-cta .eazyclean-seo-btn-outline {
	border: 1px solid var(--ec-border);
	color: var(--ec-text-muted);
	background: transparent;
}

.eazyclean-seo-substances-cta .eazyclean-seo-btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
	.eazyclean-seo-substance-grid {
		gap: 8px;
	}

	.eazyclean-seo-substance-pill {
		padding: 6px 14px;
		font-size: 0.82rem;
	}
}

/* === About Section === */
.eazyclean-seo-about {
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	padding: 40px 48px;
	box-shadow: var(--ec-shadow);
}

.eazyclean-seo-about h2 {
	font-size: 1.3rem;
	margin-bottom: 16px;
	color: var(--ec-text);
}

.eazyclean-seo-about .eazyclean-seo-prose {
	font-size: 0.98rem;
	color: var(--ec-text-muted);
}

.eazyclean-seo-about .eazyclean-seo-prose a {
	color: var(--ec-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.eazyclean-seo-about .eazyclean-seo-prose a:hover {
	color: #ffffff;
}

/* === Icon Styles === */
.eazyclean-seo-icon {
	width: 24px;
	height: 24px;
}

/* === Trust Badges === */
.eazyclean-seo-trust-bar {
	display: flex;
	gap: 32px;
	padding: 32px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	box-shadow: var(--ec-shadow);
}

.eazyclean-seo-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--ec-text-muted);
}

.eazyclean-seo-trust-item svg {
	width: 20px;
	height: 20px;
	color: var(--ec-primary);
}

/* === Responsive === */
@media (max-width: 1024px) {
	.eazyclean-seo-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.eazyclean-seo-hero-inner {
		grid-template-columns: 1fr;
	}

	.eazyclean-seo-hero-image {
		display: none;
	}

	.eazyclean-seo-cloud-connect-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.eazyclean-seo-tory-chat {
		padding: 40px 24px;
	}

	.eazyclean-seo-tory-chat-inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.eazyclean-seo-tory-chat-visual {
		width: 140px;
	}

	.eazyclean-seo-hero {
		padding: 48px 28px;
	}

	.eazyclean-seo-h1 {
		font-size: 1.85rem;
	}

	.eazyclean-seo-grid-3,
	.eazyclean-seo-grid-4 {
		grid-template-columns: 1fr;
	}

	.eazyclean-seo-grid-2 {
		grid-template-columns: 1fr;
	}

	.eazyclean-seo-section {
		padding: 40px 0;
	}

	.eazyclean-seo-section h2 {
		font-size: 1.5rem;
	}

	.eazyclean-seo-cta {
		padding: 48px 28px;
	}

	.eazyclean-seo-hero-actions,
	.eazyclean-seo-cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.eazyclean-seo-cta-divider {
		text-align: center;
	}

	.eazyclean-seo-btn {
		justify-content: center;
	}

	.eazyclean-seo-about {
		padding: 28px 24px;
	}

	.eazyclean-seo-rating-widget {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}

	.eazyclean-seo-card {
		padding: 24px;
	}

	.eazyclean-seo-faq {
		margin-left: -24px;
		margin-right: -24px;
		padding-left: 24px;
		padding-right: 24px;
	}

	.eazyclean-seo-trust-bar {
		gap: 20px;
		padding: 24px;
	}
}

@media (max-width: 375px) {
	.eazyclean-seo-h1 {
		font-size: 1.5rem;
	}

	.eazyclean-seo-hero {
		padding: 36px 20px;
	}

	.eazyclean-seo-card {
		padding: 20px;
	}
}

/* === Elementor Overrides === */
.elementor-page .eazyclean-seo-landing,
.elementor-default .eazyclean-seo-landing {
	max-width: 100% !important;
	padding: 0 !important;
}

.elementor-page .eazyclean-seo-container,
.elementor-default .eazyclean-seo-container {
	max-width: var(--ec-max-width) !important;
	margin: 0 auto !important;
	padding: 0 24px !important;
}

.elementor-page .eazyclean-seo-hero,
.elementor-default .eazyclean-seo-hero {
	border-radius: 0 !important;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	padding-left: calc(50vw - 50% + 60px) !important;
	padding-right: calc(50vw - 50% + 60px) !important;
}

.elementor-page .eazyclean-seo-cta,
.elementor-default .eazyclean-seo-cta {
	border-radius: 0 !important;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	padding-left: calc(50vw - 50% + 60px) !important;
	padding-right: calc(50vw - 50% + 60px) !important;
}

.elementor-page .eazyclean-seo-faq,
.elementor-default .eazyclean-seo-faq {
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	padding-left: calc(50vw - 50% + 24px) !important;
	padding-right: calc(50vw - 50% + 24px) !important;
}

/* Reset Elementor heading styles */
.eazyclean-seo-landing h1,
.eazyclean-seo-landing h2,
.eazyclean-seo-landing h3 {
	font-family: var(--ec-font-heading) !important;
}

.eazyclean-seo-landing .eazyclean-seo-h1 {
	color: #ffffff !important;
}

.eazyclean-seo-landing .eazyclean-seo-section h2 {
	color: var(--ec-text) !important;
}

.eazyclean-seo-landing .eazyclean-seo-cta h2 {
	color: #ffffff !important;
}

/* Elementor chat-sim overrides */
.elementor-page .eazyclean-seo-chat-sim,
.elementor-default .eazyclean-seo-chat-sim {
	height: 190px !important;
}

.elementor-page .eazyclean-seo-chat-sim-bubble,
.elementor-default .eazyclean-seo-chat-sim-bubble {
	font-size: 0.92rem !important;
	line-height: 1.5 !important;
	letter-spacing: normal !important;
}

/* === Directory / Pages Widget === */
.eazyclean-seo-directory {
	font-family: var(--ec-font-body);
	max-width: 1100px;
	margin: 0 auto;
}

/* Header: search + active location above map */
.eazyclean-seo-directory-header {
	margin-bottom: 16px;
}

/* Search (full width) */
.eazyclean-seo-directory-search {
	position: relative;
}

.eazyclean-seo-directory-search input {
	width: 100%;
	padding: 14px 20px 14px 48px;
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius-sm);
	font-size: 0.95rem;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	color: var(--ec-text);
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	outline: none;
	box-sizing: border-box;
}

.eazyclean-seo-directory-search input::placeholder {
	color: var(--ec-text-muted);
}

.eazyclean-seo-directory-search input:focus {
	border-color: var(--ec-primary);
	box-shadow: 0 0 0 3px rgba(0, 211, 242, 0.1);
	background: rgba(0, 0, 0, 0.4);
}

.eazyclean-seo-directory-search-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: var(--ec-text-muted);
	pointer-events: none;
}

/* Active Location Label */
.eazyclean-seo-directory-active-location {
	margin-top: 10px;
}

.eazyclean-seo-directory-active-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: rgba(0, 211, 242, 0.1);
	border: 1px solid rgba(0, 211, 242, 0.2);
	border-radius: 9999px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ec-primary);
}

.eazyclean-seo-directory-active-label svg {
	color: var(--ec-primary);
	flex-shrink: 0;
	width: 14px;
	height: 14px;
}

.eazyclean-seo-directory-clear-location {
	background: none;
	border: none;
	color: var(--ec-text-muted);
	font-size: 1.1rem;
	cursor: pointer;
	padding: 0 0 0 4px;
	line-height: 1;
	transition: color 0.2s;
}

.eazyclean-seo-directory-clear-location:hover {
	color: var(--ec-text);
}

/* Map Container */
.eazyclean-seo-directory-map {
	border-radius: var(--ec-radius-sm);
	overflow: hidden;
	margin-bottom: 20px;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	position: relative;
}

.eazyclean-seo-directory-map-svg {
	display: block;
	width: 100%;
	height: auto;
}

/* Country outlines */
.eazyclean-seo-map-country {
	fill: rgba(255, 255, 255, 0.06);
	stroke: rgba(255, 255, 255, 0.12);
	stroke-width: 0.5;
	stroke-linejoin: round;
}

/* Map Dots */
.eazyclean-seo-map-dot {
	transition: r 0.25s ease, fill 0.25s ease;
}

.eazyclean-seo-map-dot-glow {
	transition: r 0.25s ease, fill 0.25s ease;
}

.eazyclean-seo-map-dot.active {
	fill: #00d3f2;
}

.eazyclean-seo-map-dot-glow.active {
	fill: rgba(0, 211, 242, 0.3);
}

/* Dot pulse animation */
@keyframes ecDotPulse {
	0%, 100% { r: 3; opacity: 1; }
	50% { r: 3.8; opacity: 0.85; }
}

.eazyclean-seo-map-dot {
	animation: ecDotPulse 3s ease-in-out infinite;
}

.eazyclean-seo-map-dot.active {
	animation: none;
}

/* Map Tooltip */
.eazyclean-seo-map-tooltip {
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(12px);
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 5px;
	text-align: center;
	white-space: nowrap;
	pointer-events: none;
	font-family: var(--ec-font-body);
	line-height: 1.3;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	border: 1px solid var(--ec-border);
}

/* Count */
.eazyclean-seo-directory-count {
	font-size: 0.82rem;
	color: var(--ec-text-muted);
	margin-bottom: 12px;
}

/* Results Grid */
.eazyclean-seo-directory-results {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.eazyclean-seo-directory-item {
	display: block;
	padding: 14px 18px;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border-radius: var(--ec-radius-sm);
	text-decoration: none;
	transition: all 0.2s;
	border: 1px solid var(--ec-border);
}

.eazyclean-seo-directory-item:hover {
	background: rgba(0, 0, 0, 0.45);
	border-color: var(--ec-primary);
	box-shadow: var(--ec-shadow-glow);
}

.eazyclean-seo-directory-item-title {
	display: block;
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--ec-text);
	margin-bottom: 3px;
}

.eazyclean-seo-directory-item-meta {
	display: flex;
	gap: 6px;
	font-size: 0.75rem;
	color: var(--ec-text-muted);
}

.eazyclean-seo-directory-item-meta span {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.eazyclean-seo-directory-empty {
	text-align: center;
	padding: 40px 24px;
	color: var(--ec-text-muted);
	font-size: 0.9rem;
	grid-column: 1 / -1;
}

.eazyclean-seo-directory-more {
	grid-column: 1 / -1;
	text-align: center;
	padding: 12px;
}

.eazyclean-seo-directory-more button {
	padding: 10px 28px;
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius-sm);
	background: transparent;
	color: var(--ec-text-muted);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.eazyclean-seo-directory-more button:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

@media (max-width: 640px) {
	.eazyclean-seo-directory-results {
		grid-template-columns: 1fr;
	}

	.eazyclean-seo-directory-map {
		border-radius: 8px;
	}

	.eazyclean-seo-directory-search input {
		padding: 12px 16px 12px 42px;
		font-size: 0.9rem;
	}
}

/* === Contact Block (Inline) === */
.eazyclean-seo-contact-block {
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	padding: 40px;
	color: #ffffff;
	width: 100%;
	box-sizing: border-box;
	box-shadow: var(--ec-shadow);
}

.eazyclean-seo-contact-block-header {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 28px;
}

.eazyclean-seo-contact-block-photo {
	width: 200px;
	flex-shrink: 0;
}

.eazyclean-seo-contact-block-photo img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.eazyclean-seo-contact-block-info h4 {
	margin: 0 0 4px;
	font-size: 1.15rem;
	font-weight: 700;
	color: #ffffff;
}

.eazyclean-seo-contact-block-name {
	margin: 0 0 8px;
	font-size: 1.3rem;
	font-weight: 700;
	opacity: 0.9;
}

.eazyclean-seo-contact-block-subtitle {
	margin: 0;
	font-size: 0.9rem;
	color: var(--ec-text-muted);
	line-height: 1.5;
}

.eazyclean-seo-contact-block-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.eazyclean-seo-contact-block .eazyclean-seo-btn-primary {
	background: var(--ec-gradient-btn);
	color: #ffffff;
	box-shadow: var(--ec-shadow-glow);
}

.eazyclean-seo-contact-block .eazyclean-seo-btn-primary:hover {
	box-shadow: 0 0 30px rgba(6, 182, 212, 0.45);
	filter: brightness(1.1);
}

.eazyclean-seo-contact-block .eazyclean-seo-btn-outline {
	border-color: var(--ec-border);
	color: var(--ec-text-muted);
}

.eazyclean-seo-contact-block .eazyclean-seo-btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

.eazyclean-seo-contact-block-phone {
	font-weight: 400;
	font-size: 0.82rem;
	color: var(--ec-text-dim);
	margin-left: 4px;
}

.eazyclean-seo-contact-block .eazyclean-seo-chat-sim {
	margin-top: 24px;
	height: 190px;
}

.eazyclean-seo-contact-block .eazyclean-seo-chat-sim-hidden {
	display: none;
}

.eazyclean-seo-contact-block .eazyclean-seo-chat-sim-user {
	background: var(--ec-gradient-btn);
	color: #fff;
}

.eazyclean-seo-contact-block .eazyclean-seo-chat-sim-tory {
	background: rgba(255, 255, 255, 0.1);
	color: var(--ec-text-body);
	border: 1px solid var(--ec-border);
	box-shadow: none;
}

.eazyclean-seo-contact-block .eazyclean-seo-chat-sim-arrow {
	color: var(--ec-primary);
	background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
	.eazyclean-seo-contact-block {
		padding: 28px 24px;
	}

	.eazyclean-seo-contact-block-header {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.eazyclean-seo-contact-block-photo {
		width: 150px;
	}

	.eazyclean-seo-contact-block-actions {
		flex-direction: column;
	}

	.eazyclean-seo-contact-block-btn {
		justify-content: center;
	}
}

/* ======================================================================
   Product Overview Widget
   ====================================================================== */
.eazyclean-seo-products {
	font-family: var(--ec-font-body);
	max-width: var(--ec-max-width, 1180px);
	margin: 0 auto;
	padding: 0 20px;
}

/* Intro */
.eazyclean-seo-products-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px;
}

.eazyclean-seo-products-intro h2 {
	font-family: var(--ec-font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--ec-text);
	margin-bottom: 12px;
	line-height: 1.25;
}

.eazyclean-seo-products-subheading {
	font-size: 1.15rem;
	color: var(--ec-primary);
	font-weight: 500;
	margin-bottom: 16px;
}

.eazyclean-seo-products-text {
	font-size: 0.95rem;
	color: var(--ec-text-muted);
	line-height: 1.7;
}

/* Filter Tabs */
.eazyclean-seo-products-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: 32px;
}

.eazyclean-seo-products-seo-text {
	max-width: 900px;
	margin: 0 auto 40px;
	font-size: 0.88rem;
	line-height: 1.75;
	color: var(--ec-text-body);
}

.eazyclean-seo-products-seo-text h2 {
	font-family: var(--ec-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--ec-text);
	margin: 0 0 16px;
	text-align: center;
}

.eazyclean-seo-products-seo-text p {
	margin: 0 0 14px;
}

.eazyclean-seo-products-seo-text p:last-child {
	margin-bottom: 0;
}

.eazyclean-seo-products-seo-collapsed {
	display: none;
	margin-top: 14px;
}

.eazyclean-seo-products-seo-collapsed.eazyclean-seo-expanded {
	display: block;
}

.eazyclean-seo-products-seo-toggle {
	background: none;
	border: none;
	color: var(--ec-primary);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	padding: 8px 0 0;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.eazyclean-seo-products-seo-toggle:hover {
	opacity: 0.8;
}

.eazyclean-seo-toggle-arrow {
	display: inline-block;
	transition: transform 0.3s ease;
}

.eazyclean-seo-products-seo-toggle.eazyclean-seo-expanded .eazyclean-seo-toggle-arrow {
	transform: rotate(180deg);
}

.eazyclean-seo-products-filter {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius-pill);
	background: transparent;
	color: var(--ec-text-muted);
	font-size: 0.88rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--ec-transition);
	font-family: inherit;
}

.eazyclean-seo-products-filter:hover {
	border-color: var(--ec-primary);
	color: var(--ec-primary);
}

.eazyclean-seo-products-filter.active {
	background: var(--ec-gradient-btn);
	border-color: transparent;
	color: #fff;
	box-shadow: var(--ec-shadow-glow);
}

.eazyclean-seo-products-filter-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: var(--ec-radius-pill);
	background: rgba(255, 255, 255, 0.1);
	font-size: 0.75rem;
	font-weight: 600;
}

.eazyclean-seo-products-filter.active .eazyclean-seo-products-filter-count {
	background: rgba(255, 255, 255, 0.25);
}

/* Product Grid */
.eazyclean-seo-products-grid {
	display: grid;
	gap: 24px;
}

.eazyclean-seo-products-grid.eazyclean-seo-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.eazyclean-seo-products-grid.eazyclean-seo-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.eazyclean-seo-products-grid.eazyclean-seo-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Product Card */
.eazyclean-seo-product-card {
	border-radius: var(--ec-radius);
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	overflow: hidden;
	transition: var(--ec-transition);
	box-shadow: var(--ec-shadow);
}

.eazyclean-seo-product-card:hover {
	box-shadow: var(--ec-shadow), 0 0 20px rgba(0, 211, 242, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
}

.eazyclean-seo-product-card.eazyclean-seo-hidden {
	display: none;
}

.eazyclean-seo-product-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.eazyclean-seo-product-card-link:hover,
.eazyclean-seo-product-card-link:focus {
	text-decoration: none;
	color: inherit;
}

/* Card Image */
.eazyclean-seo-product-card-image {
	position: relative;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.2);
	aspect-ratio: 1 / 1;
}

.eazyclean-seo-product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.eazyclean-seo-product-card:hover .eazyclean-seo-product-card-image img {
	transform: scale(1.04);
}

.eazyclean-seo-product-card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 12px;
	border-radius: var(--ec-radius-pill);
	background: var(--ec-gradient-btn);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.eazyclean-seo-product-card-round-badge {
	position: absolute;
	bottom: 12px;
	right: 12px;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--ec-gradient-btn);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.52rem;
	font-weight: 700;
	line-height: 1.15;
	padding: 6px;
	box-shadow: var(--ec-shadow-glow);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* Card Body */
.eazyclean-seo-product-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px;
}

.eazyclean-seo-product-card-title {
	font-family: var(--ec-font-heading);
	font-size: 1.05rem;
	font-weight: 650;
	color: var(--ec-text);
	margin: 0 0 8px;
	line-height: 1.3;
}

.eazyclean-seo-product-card-tagline {
	font-size: 0.85rem;
	color: var(--ec-text-muted);
	line-height: 1.55;
	margin: 0 0 12px;
}

.eazyclean-seo-product-card-features {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.eazyclean-seo-product-card-features li {
	font-size: 0.8rem;
	color: var(--ec-text-body);
	padding-left: 18px;
	position: relative;
	line-height: 1.45;
}

.eazyclean-seo-product-card-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ec-primary);
	opacity: 0.6;
}

/* Card CTA */
.eazyclean-seo-product-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 4px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ec-primary);
	transition: var(--ec-transition);
}

.eazyclean-seo-product-card-cta svg {
	transition: transform 0.2s ease;
}

.eazyclean-seo-product-card:hover .eazyclean-seo-product-card-cta svg {
	transform: translateX(4px);
}

/* Responsive */
@media (max-width: 960px) {
	.eazyclean-seo-products-grid.eazyclean-seo-grid-3,
	.eazyclean-seo-products-grid.eazyclean-seo-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.eazyclean-seo-products-grid.eazyclean-seo-grid-2,
	.eazyclean-seo-products-grid.eazyclean-seo-grid-3,
	.eazyclean-seo-products-grid.eazyclean-seo-grid-4 {
		grid-template-columns: 1fr;
	}

	.eazyclean-seo-products-intro h2 {
		font-size: 1.5rem;
	}

	.eazyclean-seo-products-filters {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 4px;
	}

	.eazyclean-seo-products-filter {
		white-space: nowrap;
		flex-shrink: 0;
	}
}

/* ==========================================================================
   Product Carousel
   ========================================================================== */

.eazyclean-seo-carousel {
	margin: 48px 0;
	overflow: hidden;
}

.eazyclean-seo-carousel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	padding: 0 4px;
}

.eazyclean-seo-carousel-title {
	font-family: var(--ec-font-heading);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--ec-text);
	margin: 0;
}

.eazyclean-seo-carousel-nav {
	display: flex;
	gap: 8px;
}

.eazyclean-seo-carousel-prev,
.eazyclean-seo-carousel-next {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--ec-border);
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	color: var(--ec-text);
	font-size: 1.3rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.eazyclean-seo-carousel-prev:hover,
.eazyclean-seo-carousel-next:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
}

.eazyclean-seo-carousel-prev:disabled,
.eazyclean-seo-carousel-next:disabled {
	opacity: 0.3;
	cursor: default;
}

.eazyclean-seo-carousel-track-wrapper {
	overflow: hidden;
}

.eazyclean-seo-carousel-track {
	display: flex;
	gap: 20px;
	transition: transform 0.4s ease;
}

.eazyclean-seo-carousel-card {
	flex: 0 0 calc((100% - 60px) / 4);
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border-radius: var(--ec-radius);
	overflow: hidden;
	box-shadow: var(--ec-shadow);
	border: 1px solid var(--ec-border);
	transition: transform 0.25s, box-shadow 0.25s;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
}

.eazyclean-seo-carousel-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ec-shadow), 0 0 20px rgba(0, 211, 242, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	text-decoration: none;
	color: inherit;
}

.eazyclean-seo-carousel-card-image {
	position: relative;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.2);
	aspect-ratio: 1 / 1;
}

.eazyclean-seo-carousel-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.eazyclean-seo-carousel-card:hover .eazyclean-seo-carousel-card-image img {
	transform: scale(1.04);
}

.eazyclean-seo-carousel-card-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 3px 10px;
	border-radius: var(--ec-radius-pill);
	background: var(--ec-gradient-btn);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.eazyclean-seo-carousel-card-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.eazyclean-seo-carousel-card-title {
	font-family: var(--ec-font-heading);
	font-size: 0.92rem;
	font-weight: 650;
	color: var(--ec-text);
	margin: 0 0 6px;
	line-height: 1.3;
}

.eazyclean-seo-carousel-card-tagline {
	font-size: 0.78rem;
	color: var(--ec-text-muted);
	line-height: 1.5;
	margin: 0 0 10px;
	flex: 1;
}

.eazyclean-seo-carousel-card-cta {
	color: var(--ec-primary);
	font-size: 0.78rem;
	font-weight: 600;
	margin-top: auto;
}

.eazyclean-seo-carousel-footer {
	text-align: center;
	margin-top: 24px;
}

.eazyclean-seo-carousel-all-link {
	display: inline-block;
	padding: 10px 28px;
	border-radius: var(--ec-radius-pill);
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	color: var(--ec-text-muted);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
}

.eazyclean-seo-carousel-all-link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
	text-decoration: none;
}

/* Responsive columns via data-attribute */
.eazyclean-seo-carousel[data-columns="2"] .eazyclean-seo-carousel-card { flex: 0 0 calc((100% - 20px) / 2); }
.eazyclean-seo-carousel[data-columns="3"] .eazyclean-seo-carousel-card { flex: 0 0 calc((100% - 40px) / 3); }
.eazyclean-seo-carousel[data-columns="5"] .eazyclean-seo-carousel-card { flex: 0 0 calc((100% - 80px) / 5); }
.eazyclean-seo-carousel[data-columns="6"] .eazyclean-seo-carousel-card { flex: 0 0 calc((100% - 100px) / 6); }

@media (max-width: 1024px) {
	.eazyclean-seo-carousel-card {
		flex: 0 0 calc((100% - 40px) / 3) !important;
	}
}

@media (max-width: 768px) {
	.eazyclean-seo-carousel-card {
		flex: 0 0 calc((100% - 20px) / 2) !important;
	}
}

@media (max-width: 480px) {
	.eazyclean-seo-carousel-card {
		flex: 0 0 85% !important;
	}
	.eazyclean-seo-carousel-track {
		scroll-snap-type: x mandatory;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.eazyclean-seo-carousel-card {
		scroll-snap-align: start;
	}
}

/* ==========================================================================
   Content Sections – Landing Page Components
   Added 2026-03-09
   ========================================================================== */

/* --------------------------------------------------------------------------
   13. SVG Icon Base Class
   -------------------------------------------------------------------------- */

.eazyclean-seo-icon {
	width: 24px;
	height: 24px;
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   1. Section Title (shared section heading)
   -------------------------------------------------------------------------- */

.eazyclean-seo-section-title {
	font-family: var(--ec-font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   2. Trust Bar
   -------------------------------------------------------------------------- */

.eazyclean-seo-trust-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 32px;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--ec-radius);
	padding: 20px 32px;
}

.eazyclean-seo-trust-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.eazyclean-seo-trust-item .eazyclean-seo-icon {
	width: 20px;
	height: 20px;
	color: var(--ec-primary);
}

.eazyclean-seo-trust-item span {
	font-size: 14px;
	color: var(--ec-text-muted);
}

/* --------------------------------------------------------------------------
   3. Intro / Prose
   -------------------------------------------------------------------------- */

.eazyclean-seo-intro {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 24px;
}

.eazyclean-seo-prose {
	line-height: 1.8;
	color: var(--ec-text-body);
	font-size: 17px;
}

/* --------------------------------------------------------------------------
   4. Product Cards (matching support.eazyclean.com style)
   -------------------------------------------------------------------------- */

.eazyclean-seo-product-card {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.eazyclean-seo-product-image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.eazyclean-seo-product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.eazyclean-seo-product-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px 28px 28px;
}

.eazyclean-seo-product-card-body h3 {
	font-family: var(--ec-font-heading);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--ec-text);
	margin: 0 0 4px;
}

.eazyclean-seo-product-models {
	color: var(--ec-text-muted);
	font-size: 14px;
	margin: 0 0 16px;
}

.eazyclean-seo-product-features {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 24px;
}

.eazyclean-seo-product-features li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: var(--ec-text-body);
}

.eazyclean-seo-product-features li .eazyclean-seo-icon {
	width: 18px;
	height: 18px;
	color: var(--ec-primary);
	flex-shrink: 0;
}

.eazyclean-seo-product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid var(--ec-border);
}

/* ── Eco Badge ───────────────────────────────────────────────── */

.eazyclean-seo-product-image,
.eazyclean-seo-product-card-image {
	position: relative;
}

.eazyclean-seo-eco-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px 4px 7px;
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.65), rgba(16, 160, 72, 0.65));
	border: none;
	border-radius: 9999px;
	backdrop-filter: blur(8px);
	z-index: 2;
}

.eazyclean-seo-eco-badge svg {
	stroke: #fff;
	flex-shrink: 0;
	width: 13px;
	height: 13px;
}

.eazyclean-seo-product-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.eazyclean-seo-product-learn-more {
	font-size: 0.8rem;
	color: var(--ec-primary);
	text-decoration: none;
	opacity: 0.75;
	transition: opacity 0.3s ease;
	white-space: nowrap;
}

.eazyclean-seo-product-learn-more:hover {
	opacity: 1;
	text-decoration: underline;
}

.eazyclean-seo-product-price {
	display: flex;
	flex-direction: column;
}

.eazyclean-seo-price-value {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--ec-primary);
	line-height: 1.2;
}

.eazyclean-seo-price-sub {
	font-size: 12px;
	color: var(--ec-text-muted);
	margin-top: 2px;
}

.eazyclean-seo-product-card .eazyclean-seo-btn-outline {
	border-radius: var(--ec-radius-sm);
	padding: 0.55rem 1.25rem;
	font-size: 0.85rem;
	white-space: nowrap;
	color: #ffffff;
	border-color: var(--ec-primary);
}

.eazyclean-seo-product-card .eazyclean-seo-btn-outline:hover {
	background: rgba(0, 211, 242, 0.1);
	border-color: var(--ec-primary);
}

/* --------------------------------------------------------------------------
   5 & 6. Industries / Science Sections (use existing card/grid classes)
   -------------------------------------------------------------------------- */

.eazyclean-seo-industries,
.eazyclean-seo-science {
	/* Section wrappers – inherit default section spacing */
}

.eazyclean-seo-science-sources {
	text-align: center;
	font-size: 12px;
	color: var(--ec-text-muted, rgba(255, 255, 255, 0.4));
	margin-top: 32px;
	font-style: italic;
}

/* --------------------------------------------------------------------------
   7. Related Cities
   -------------------------------------------------------------------------- */

.eazyclean-seo-city-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.eazyclean-seo-city-link {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--ec-border);
	padding: 8px 20px;
	border-radius: var(--ec-radius-pill);
	color: var(--ec-text-body);
	font-size: 14px;
	text-decoration: none;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.eazyclean-seo-city-link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--ec-primary);
	color: #ffffff;
}

/* --------------------------------------------------------------------------
   8. Contact Section
   -------------------------------------------------------------------------- */

.eazyclean-seo-contact-section {
	padding: 80px 24px;
	text-align: center;
}

.eazyclean-seo-contact-section .eazyclean-seo-contact-form {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	padding: 48px;
	max-width: 700px;
	margin: 0 auto;
}

/* Form trust indicators */
.eazyclean-seo-form-trust {
	display: flex;
	justify-content: center;
	gap: 28px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.eazyclean-seo-form-trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--ec-primary);
	font-weight: 500;
}

.eazyclean-seo-form-trust-item svg {
	flex-shrink: 0;
	opacity: 0.8;
}

/* Buy now section */
.eazyclean-seo-buy-now {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	padding-top: 32px;
}

.eazyclean-seo-buy-now-divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	color: var(--ec-text-body);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.eazyclean-seo-buy-now-divider::before,
.eazyclean-seo-buy-now-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--ec-border);
}

.eazyclean-seo-buy-now-text {
	color: var(--ec-text-body);
	font-size: 15px;
	margin-bottom: 16px;
}

.eazyclean-seo-buy-now-btn {
	color: #ffffff;
	border-color: var(--ec-primary);
}

.eazyclean-seo-buy-now-btn:hover {
	background: rgba(0, 211, 242, 0.1);
}

/* (old animations removed – using stylish border approach instead) */

/* --------------------------------------------------------------------------
   9. CTA Section
   -------------------------------------------------------------------------- */

.eazyclean-seo-cta {
	text-align: center;
	padding: 80px 24px;
	background: linear-gradient(180deg, transparent, rgba(0, 211, 242, 0.03));
}

.eazyclean-seo-cta-inner {
	max-width: 800px;
	margin: 0 auto;
}

.eazyclean-seo-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 32px;
}

.eazyclean-seo-cta-actions .eazyclean-seo-btn {
	padding: 16px 32px;
}

.eazyclean-seo-cta-actions .eazyclean-seo-btn span {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.eazyclean-seo-cta-actions .eazyclean-seo-btn small {
	font-size: 11px;
	opacity: 0.7;
	font-weight: 400;
}

/* --------------------------------------------------------------------------
   10. Related Pages
   -------------------------------------------------------------------------- */

.eazyclean-seo-related-link {
	display: block;
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	padding: 20px;
	text-decoration: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.eazyclean-seo-related-link:hover {
	border-color: var(--ec-primary);
	box-shadow: 0 0 20px rgba(0, 211, 242, 0.1);
}

.eazyclean-seo-related-service {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ec-primary);
	margin-bottom: 4px;
}

.eazyclean-seo-related-title {
	display: block;
	color: #ffffff;
	font-weight: 500;
}

.eazyclean-seo-related-link .eazyclean-seo-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--ec-primary);
	width: 18px;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.eazyclean-seo-related-link:hover .eazyclean-seo-icon {
	opacity: 1;
}

/* --------------------------------------------------------------------------
   11. Power Badge
   -------------------------------------------------------------------------- */

.eazyclean-seo-power-badge {
	text-align: center;
	padding: 40px 24px;
}

.eazyclean-seo-power-badge-inner {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--ec-gradient-btn);
	color: #ffffff;
	padding: 14px 32px;
	border-radius: var(--ec-radius-pill);
	font-weight: 600;
	font-size: 16px;
	box-shadow: 0 0 30px rgba(0, 184, 219, 0.3);
}

.eazyclean-seo-power-badge-inner .eazyclean-seo-icon {
	width: 20px;
	height: 20px;
}

/* --------------------------------------------------------------------------
   12. About Section
   -------------------------------------------------------------------------- */

.eazyclean-seo-about {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

/* --------------------------------------------------------------------------
   14. Inline Form Styles (EazyClean_SEO_Form)
   -------------------------------------------------------------------------- */

.eazyclean-seo-form {
	width: 100%;
}

.eazyclean-seo-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.eazyclean-seo-form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.eazyclean-seo-form-field label {
	font-size: 14px;
	color: var(--ec-text-muted);
	font-weight: 500;
}

.eazyclean-seo-form-input,
.eazyclean-seo-form-textarea {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius-sm);
	padding: 14px 16px;
	color: #ffffff;
	font-size: 15px;
	font-family: var(--ec-font-body);
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.eazyclean-seo-form-input:focus,
.eazyclean-seo-form-textarea:focus {
	border-color: var(--ec-primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 211, 242, 0.1);
}

.eazyclean-seo-form-input::placeholder,
.eazyclean-seo-form-textarea::placeholder {
	color: var(--ec-text-muted);
	opacity: 0.6;
}

.eazyclean-seo-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.eazyclean-seo-form-submit {
	background: var(--ec-gradient-btn);
	color: #ffffff;
	border: none;
	border-radius: var(--ec-radius-pill);
	padding: 16px;
	width: 100%;
	font-weight: 600;
	font-size: 16px;
	font-family: var(--ec-font-body);
	cursor: pointer;
	transition: opacity 0.25s ease, box-shadow 0.25s ease;
	margin-top: 8px;
}

.eazyclean-seo-form-submit:hover {
	opacity: 0.9;
	box-shadow: 0 0 20px rgba(0, 184, 219, 0.3);
}

.eazyclean-seo-form-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.eazyclean-seo-form-status {
	margin-top: 16px;
}

.eazyclean-seo-form-success {
	color: #10b981;
	background: rgba(16, 185, 129, 0.1);
	padding: 16px;
	border-radius: var(--ec-radius-sm);
}

.eazyclean-seo-form-error {
	color: #ef4444;
	background: rgba(239, 68, 68, 0.1);
	padding: 16px;
	border-radius: var(--ec-radius-sm);
}

.eazyclean-seo-form-privacy {
	font-size: 12px;
	color: var(--ec-text-muted);
	margin-top: 12px;
	text-align: center;
}

.eazyclean-seo-form-privacy a {
	color: var(--ec-primary);
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Mobile Responsive – Content Sections
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
	/* Section title */
	.eazyclean-seo-section-title {
		font-size: 1.5rem;
	}

	/* Trust bar – 2-column grid */
	.eazyclean-seo-trust-bar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
		padding: 16px 20px;
	}

	/* Product cards – single column */
	.eazyclean-seo-products .eazyclean-seo-grid-2,
	.eazyclean-seo-products .eazyclean-seo-grid-3 {
		grid-template-columns: 1fr;
	}

	.eazyclean-seo-product-footer {
		flex-wrap: wrap;
		gap: 12px;
	}

	.eazyclean-seo-product-card-body {
		padding: 20px;
	}

	/* CTA actions – vertical stack */
	.eazyclean-seo-cta-actions {
		flex-direction: column;
		align-items: center;
	}

	.eazyclean-seo-cta-actions .eazyclean-seo-btn {
		width: 100%;
		max-width: 340px;
	}

	/* CTA section reduced padding */
	.eazyclean-seo-cta {
		padding: 48px 16px;
	}

	/* City grid */
	.eazyclean-seo-city-grid {
		justify-content: center;
	}

	/* Related pages – 1 column */
	.eazyclean-seo-related-pages .eazyclean-seo-grid-3 {
		grid-template-columns: 1fr;
	}

	/* Contact section */
	.eazyclean-seo-contact-section {
		padding: 48px 16px;
	}

	.eazyclean-seo-contact-section .eazyclean-seo-contact-form {
		padding: 24px;
	}

	.eazyclean-seo-form-trust {
		gap: 12px;
	}

	.eazyclean-seo-form-trust-item {
		font-size: 12px;
	}

	/* Form row – single column */
	.eazyclean-seo-form-row {
		grid-template-columns: 1fr;
	}

	/* Power badge */
	.eazyclean-seo-power-badge-inner {
		font-size: 14px;
		padding: 12px 24px;
	}

	/* Intro / prose */
	.eazyclean-seo-intro,
	.eazyclean-seo-about {
		padding-left: 16px;
		padding-right: 16px;
	}

	.eazyclean-seo-prose {
		font-size: 15px;
	}

	/* Site page tech blocks - stack on mobile */
	.eazyclean-seo-tech-block {
		grid-template-columns: 1fr !important;
		gap: 24px;
	}
	.eazyclean-seo-tech-block.eazyclean-seo-tech-reverse .eazyclean-seo-tech-image {
		order: 0;
	}

	/* Product detail grid */
	.eazyclean-seo-product-detail-grid {
		grid-template-columns: 1fr !important;
	}

	/* Hotline card */
	.eazyclean-seo-hotline-card {
		flex-direction: column;
		text-align: center;
	}

	/* Membership grid */
	.eazyclean-seo-membership-grid {
		grid-template-columns: 1fr !important;
	}

	/* Benefits grid */
	.eazyclean-seo-benefit-item {
		font-size: 15px;
	}
}

/* ═══════════════════════════════════════════════════════════════
 *  SITE PAGES – Additional Styles
 * ═══════════════════════════════════════════════════════════════ */

/* Science sources note */
.eazyclean-seo-science-sources {
	text-align: center;
	font-size: 12px;
	color: var(--ec-text-muted, rgba(255, 255, 255, 0.4));
	margin-top: 32px;
	font-style: italic;
}

/* ── Technology Blocks (alternating text/image) ─────────────── */

.eazyclean-seo-tech-sections {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.eazyclean-seo-tech-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.eazyclean-seo-tech-block.eazyclean-seo-tech-reverse {
	direction: rtl;
}
.eazyclean-seo-tech-block.eazyclean-seo-tech-reverse > * {
	direction: ltr;
}

.eazyclean-seo-tech-text h2 {
	font-family: var(--ec-font-heading);
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--ec-text);
}

.eazyclean-seo-tech-text .eazyclean-seo-card-icon {
	margin-bottom: 12px;
}

.eazyclean-seo-tech-text .eazyclean-seo-card-icon svg {
	width: 36px;
	height: 36px;
	color: var(--ec-primary);
}

.eazyclean-seo-tech-text p {
	line-height: 1.7;
	color: var(--ec-text-body);
}

.eazyclean-seo-tech-image {
	border-radius: var(--ec-radius);
	overflow: hidden;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	padding: 16px;
}

.eazyclean-seo-tech-image img {
	width: 100%;
	height: auto;
	max-height: 350px;
	object-fit: contain;
	display: block;
	border-radius: var(--ec-radius-sm);
}

.eazyclean-seo-tech-image img[src*="TANDEM"],
.eazyclean-seo-tech-image img[src*="tandem"] {
	max-height: 480px;
}

/* ── Product Detail Card ────────────────────────────────────── */

.eazyclean-seo-product-detail-card {
	padding: 32px;
}

.eazyclean-seo-product-detail-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.eazyclean-seo-product-specs h2 {
	font-family: var(--ec-font-heading);
	font-size: 32px;
	font-weight: 600;
	color: var(--ec-text);
	margin-bottom: 8px;
}

/* ── Service Hotline Card ───────────────────────────────────── */

.eazyclean-seo-hotline-card {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 32px;
	background: linear-gradient(135deg, rgba(0, 211, 242, 0.1), rgba(21, 93, 252, 0.1));
	border: 1px solid rgba(0, 211, 242, 0.3);
}

.eazyclean-seo-hotline-card .eazyclean-seo-card-icon svg {
	width: 48px;
	height: 48px;
	color: var(--ec-primary);
}

.eazyclean-seo-hotline-card h2 {
	font-family: var(--ec-font-heading);
	font-size: 18px;
	font-weight: 500;
	color: var(--ec-text-muted);
	margin: 0 0 4px 0;
}

.eazyclean-seo-hotline-number {
	font-family: var(--ec-font-heading);
	font-size: 32px;
	font-weight: 700;
	color: var(--ec-primary);
	text-decoration: none;
	transition: var(--ec-transition);
}

.eazyclean-seo-hotline-number:hover {
	color: var(--ec-text);
	text-shadow: 0 0 20px rgba(0, 211, 242, 0.5);
}

/* ── Subpage Cards (product overview children) ──────────────── */

.eazyclean-seo-subpage-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--ec-text-body);
	transition: var(--ec-transition);
	position: relative;
	overflow: hidden;
}

.eazyclean-seo-subpage-card:hover {
	transform: translateY(-4px);
	border-color: var(--ec-primary);
	box-shadow: var(--ec-shadow-glow);
}

.eazyclean-seo-subpage-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	margin: -24px -24px 16px -24px;
	width: calc(100% + 48px);
}

.eazyclean-seo-subpage-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.03);
	padding: 16px;
}

.eazyclean-seo-subpage-card h3 {
	font-family: var(--ec-font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--ec-text);
	margin-bottom: 8px;
}

.eazyclean-seo-subpage-card p {
	color: var(--ec-text-muted);
	font-size: 15px;
	flex: 1;
}

.eazyclean-seo-card-arrow {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 16px;
	color: var(--ec-primary);
}

.eazyclean-seo-card-arrow svg {
	width: 20px;
	height: 20px;
	transition: var(--ec-transition);
}

.eazyclean-seo-subpage-card:hover .eazyclean-seo-card-arrow svg {
	transform: translateX(4px);
}

/* ── Company Values ─────────────────────────────────────────── */

.eazyclean-seo-company-values .eazyclean-seo-card {
	text-align: left;
}

/* ── Memberships ────────────────────────────────────────────── */

.eazyclean-seo-membership-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	align-items: center;
	justify-items: center;
	margin-top: 32px;
}

.eazyclean-seo-membership-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}

.eazyclean-seo-membership-item img {
	max-height: 72px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.7;
	transition: var(--ec-transition);
}

.eazyclean-seo-membership-item:hover img {
	opacity: 1;
}

.eazyclean-seo-membership-item span {
	font-size: 13px;
	color: var(--ec-text-muted);
}

/* ── Company Values — styled cards ──────────────────────────── */

.eazyclean-seo-value-card {
	border: 1px solid rgba(0, 211, 242, 0.12) !important;
	background: linear-gradient(135deg, rgba(0, 211, 242, 0.03), rgba(21, 93, 252, 0.03)) !important;
	position: relative;
	overflow: hidden;
	transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease !important;
}

/* Subtle mood background image */
.eazyclean-seo-value-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--val-bg);
	background-size: cover;
	background-position: center;
	opacity: 0.12;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.eazyclean-seo-value-card:hover::before {
	opacity: 0.22;
}

/* Gradient top accent line */
.eazyclean-seo-value-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--ec-primary), #155dfc, transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.eazyclean-seo-value-card:hover {
	border-color: rgba(0, 211, 242, 0.3) !important;
	box-shadow: 0 0 25px rgba(0, 211, 242, 0.08), 0 8px 32px rgba(0, 0, 0, 0.15);
	transform: translateY(-3px);
}

.eazyclean-seo-value-card:hover::after {
	opacity: 1;
}

/* TINA product image needs contain + padding */
.eazyclean-seo-service-features .eazyclean-seo-value-card:nth-child(2)::before {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right center;
	opacity: 0.08;
}

.eazyclean-seo-service-features .eazyclean-seo-value-card:nth-child(2):hover::before {
	opacity: 0.15;
}

/* Ensure content stays above background */
.eazyclean-seo-value-card .eazyclean-seo-card-icon,
.eazyclean-seo-value-card h3,
.eazyclean-seo-value-card p {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, 0.78) !important;
}

/* Icon glow on hover */
.eazyclean-seo-value-card:hover .eazyclean-seo-card-icon {
	border-color: rgba(0, 211, 242, 0.4);
	box-shadow: 0 0 16px rgba(0, 211, 242, 0.15);
}

/* ── Mood Gallery ───────────────────────────────────────────── */

@keyframes ecMoodReveal {
	from { opacity: 0; transform: scale(0.92); }
	to   { opacity: 1; transform: scale(1); }
}

.eazyclean-seo-mood-gallery {
	max-width: var(--ec-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

.eazyclean-seo-mood-gallery + .eazyclean-seo-section {
	border-top: none !important;
}

.eazyclean-seo-mood-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	margin-top: 2rem;
}

.eazyclean-seo-mood-card {
	position: relative;
	border-radius: var(--ec-radius);
	overflow: hidden;
	aspect-ratio: 3 / 4;
	animation: ecMoodReveal 0.5s ease both;
	animation-delay: var(--delay, 0s);
	cursor: default;
}

.eazyclean-seo-mood-image {
	width: 100%;
	height: 100%;
}

.eazyclean-seo-mood-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.eazyclean-seo-mood-card:hover .eazyclean-seo-mood-image img {
	transform: scale(1.08);
}

.eazyclean-seo-mood-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.25rem;
	transition: background 0.4s ease;
}

.eazyclean-seo-mood-card:hover .eazyclean-seo-mood-overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.eazyclean-seo-mood-overlay h3 {
	font-family: var(--ec-font-heading);
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.4rem 0;
}

.eazyclean-seo-mood-overlay p {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.3s ease;
}

.eazyclean-seo-mood-card:hover .eazyclean-seo-mood-overlay p {
	max-height: 80px;
	opacity: 1;
}

@media (max-width: 1024px) {
	.eazyclean-seo-mood-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.eazyclean-seo-mood-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Company History Timeline ───────────────────────────────── */

@keyframes ecTimelineFadeIn {
	from { opacity: 0; transform: translateX(-40px) scale(0.9); }
	to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes ecIconPulse {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.15); }
}

@keyframes ecIconBreathe {
	0%   { transform: scale(1) rotate(0deg); opacity: 0.85; }
	25%  { transform: scale(1.08) rotate(3deg); opacity: 1; }
	50%  { transform: scale(1) rotate(0deg); opacity: 0.85; }
	75%  { transform: scale(1.05) rotate(-2deg); opacity: 0.95; }
	100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
}

@keyframes ecIconOrbit {
	0%   { transform: rotate(0deg) translateX(2px) rotate(0deg); }
	100% { transform: rotate(360deg) translateX(2px) rotate(-360deg); }
}

@keyframes ecGlowPulse {
	0%, 100% { box-shadow: 0 0 8px rgba(0, 211, 242, 0.2), 0 0 0 0 rgba(0, 211, 242, 0); }
	50%      { box-shadow: 0 0 16px rgba(0, 211, 242, 0.5), 0 0 30px rgba(0, 211, 242, 0.15); }
}

@keyframes ecRingExpand {
	0%   { transform: scale(0.8); opacity: 0.6; }
	50%  { transform: scale(1.3); opacity: 0; }
	100% { transform: scale(0.8); opacity: 0; }
}

@keyframes ecTimelineLineGlow {
	0%, 100% { opacity: 0.4; }
	50%      { opacity: 1; }
}

@keyframes ecTimelineStagger {
	from { opacity: 0; transform: translateY(30px) scale(0.95); filter: blur(4px); }
	to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.eazyclean-seo-history {
	max-width: var(--ec-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

.eazyclean-seo-timeline {
	position: relative;
	margin-top: 3rem;
	padding-left: 72px;
}

/* Timeline line — centered through icons */
.eazyclean-seo-timeline::before {
	content: '';
	position: absolute;
	left: 27px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--ec-primary), #155dfc 70%, transparent);
	opacity: 0.35;
}

/* Animated glow traveling down the line */
.eazyclean-seo-timeline::after {
	content: '';
	position: absolute;
	left: 25px;
	top: 0;
	width: 6px;
	height: 60px;
	border-radius: 3px;
	background: linear-gradient(180deg, transparent, var(--ec-primary), transparent);
	animation: ecTimelineTravel 4s ease-in-out infinite;
	opacity: 0.6;
}

@keyframes ecTimelineTravel {
	0%   { top: 0; opacity: 0; }
	10%  { opacity: 0.6; }
	90%  { opacity: 0.6; }
	100% { top: calc(100% - 60px); opacity: 0; }
}

.eazyclean-seo-timeline-item {
	position: relative;
	margin-bottom: 3.5rem;
	animation: ecTimelineStagger 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: var(--delay, 0s);
}

.eazyclean-seo-timeline-marker {
	position: absolute;
	left: -72px;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	width: 56px;
}

.eazyclean-seo-timeline-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--ec-bg, #0f1729);
	border: 2px solid rgba(0, 211, 242, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ec-primary);
	position: relative;
	z-index: 2;
	transition: border-color 0.4s ease, transform 0.3s ease;
}

.eazyclean-seo-timeline-item:hover .eazyclean-seo-timeline-icon {
	border-color: var(--ec-primary);
	transform: scale(1.12);
}

/* Pulsing ring behind icon */
.eazyclean-seo-timeline-icon::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px solid var(--ec-primary);
	animation: ecRingExpand 3s ease-in-out infinite;
	animation-delay: var(--delay, 0s);
}

/* Inner glow disc */
.eazyclean-seo-timeline-icon::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 211, 242, 0.12), transparent 70%);
	animation: ecGlowPulse 4s ease-in-out infinite;
	animation-delay: var(--delay, 0s);
	z-index: -1;
}

.eazyclean-seo-timeline-icon svg {
	width: 22px;
	height: 22px;
	animation: ecIconBreathe 5s ease-in-out infinite;
	animation-delay: var(--delay, 0s);
}

.eazyclean-seo-timeline-year {
	font-family: var(--ec-font-heading);
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--ec-primary);
	letter-spacing: 0.05em;
	text-shadow: 0 0 8px rgba(0, 211, 242, 0.3);
}

.eazyclean-seo-timeline-content {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--ec-radius);
	padding: 1.5rem 1.5rem 1.5rem 2rem;
	position: relative;
	transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.eazyclean-seo-timeline-content:hover {
	border-color: rgba(0, 211, 242, 0.3);
	transform: translateX(8px);
	box-shadow: 0 8px 32px rgba(0, 211, 242, 0.06);
}

.eazyclean-seo-timeline-content::before {
	content: '';
	position: absolute;
	left: -8px;
	top: 18px;
	width: 14px;
	height: 14px;
	background: var(--ec-bg, #0f1729);
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transform: rotate(45deg);
	transition: border-color 0.4s ease;
}

.eazyclean-seo-timeline-content:hover::before {
	border-color: rgba(0, 211, 242, 0.3);
}

.eazyclean-seo-timeline-flag {
	font-size: 1.6rem;
	margin-bottom: 0.5rem;
	display: inline-block;
	animation: ecIconBreathe 6s ease-in-out infinite;
	animation-delay: calc(var(--delay, 0s) + 0.5s);
}

.eazyclean-seo-timeline-content h3 {
	font-family: var(--ec-font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.5rem 0;
}

.eazyclean-seo-timeline-content p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

/* ── Today: Luxury Showcase ─────────────────────────────────── */

@keyframes ecCardReveal {
	from { opacity: 0; transform: translateY(20px) scale(0.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ecEmojiFloat {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	25%      { transform: translateY(-6px) rotate(-3deg); }
	75%      { transform: translateY(2px) rotate(2deg); }
}

@keyframes ecShimmer {
	0%   { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}

.eazyclean-seo-today {
	max-width: var(--ec-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

.eazyclean-seo-today-lead {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 700px;
	margin-bottom: 2.5rem;
}

.eazyclean-seo-today-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.eazyclean-seo-today-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--ec-radius);
	padding: 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	animation: ecCardReveal 0.5s ease both;
	animation-delay: var(--delay, 0s);
	transition: border-color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
}

.eazyclean-seo-today-img {
	width: 100%;
	height: 180px;
	overflow: hidden;
	position: relative;
}

.eazyclean-seo-today-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 15% 0%, rgba(0, 0, 0, 0.5) 0%, transparent 65%);
	pointer-events: none;
	z-index: 1;
}

.eazyclean-seo-today-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.eazyclean-seo-today-card:hover .eazyclean-seo-today-img img {
	transform: scale(1.08);
}

.eazyclean-seo-today-body {
	padding: 1.5rem;
}

.eazyclean-seo-today-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--ec-primary), #155dfc, transparent);
	background-size: 200% 100%;
	animation: ecShimmer 3s linear infinite;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.eazyclean-seo-today-card:hover {
	border-color: rgba(0, 211, 242, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 211, 242, 0.08);
}

.eazyclean-seo-today-card:hover::after {
	opacity: 1;
}

.eazyclean-seo-today-emoji {
	position: absolute;
	top: 10px;
	left: 12px;
	font-size: 1.8rem;
	z-index: 2;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
	animation: ecEmojiFloat 4s ease-in-out infinite;
	animation-delay: var(--delay, 0s);
}

.eazyclean-seo-today-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 1rem;
	color: var(--ec-primary);
	animation: ecIconPulse 3s ease-in-out infinite;
	animation-delay: var(--delay, 0s);
}

.eazyclean-seo-today-icon svg {
	width: 100%;
	height: 100%;
}

.eazyclean-seo-today-card h3 {
	font-family: var(--ec-font-heading);
	font-size: 1.05rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.5rem 0;
}

.eazyclean-seo-today-card p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
	line-height: 1.6;
	margin: 0;
}

/* ── Prestige Testimonial ───────────────────────────────────── */

@keyframes ecPrestigeFadeIn {
	from { opacity: 0; transform: scale(0.95); }
	to   { opacity: 1; transform: scale(1); }
}

@keyframes ecQuoteFloat {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50%      { transform: translateY(-8px) rotate(-2deg); }
}

.eazyclean-seo-prestige-testimonial {
	max-width: var(--ec-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

.eazyclean-seo-prestige-card {
	background: linear-gradient(135deg, rgba(0, 211, 242, 0.06), rgba(21, 93, 252, 0.06));
	border: 1px solid rgba(0, 211, 242, 0.2);
	border-radius: 20px;
	padding: 3rem;
	text-align: center;
	position: relative;
	animation: ecPrestigeFadeIn 0.8s ease both;
}

.eazyclean-seo-prestige-card::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: 21px;
	background: linear-gradient(135deg, var(--ec-primary), #155dfc);
	opacity: 0;
	z-index: -1;
	transition: opacity 0.5s ease;
}

.eazyclean-seo-prestige-card:hover::before {
	opacity: 0.15;
}

.eazyclean-seo-prestige-quote-icon {
	color: var(--ec-primary);
	opacity: 0.3;
	margin-bottom: 1.5rem;
	animation: ecQuoteFloat 4s ease-in-out infinite;
}

.eazyclean-seo-prestige-quote-icon svg {
	width: 48px;
	height: 48px;
}

.eazyclean-seo-prestige-text {
	font-family: var(--ec-font-heading);
	font-size: clamp(1.3rem, 3vw, 1.8rem);
	font-weight: 300;
	font-style: italic;
	color: #fff;
	line-height: 1.5;
	max-width: 640px;
	margin: 0 auto 2rem;
	border: none;
	padding: 0;
}

.eazyclean-seo-prestige-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.eazyclean-seo-prestige-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ec-primary), #155dfc);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.3rem;
	color: #fff;
	animation: ecGlowPulse 3s ease-in-out infinite;
}

.eazyclean-seo-prestige-info {
	text-align: left;
}

.eazyclean-seo-prestige-name {
	font-weight: 700;
	font-size: 1.05rem;
	color: #fff;
}

.eazyclean-seo-prestige-role {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 0.3rem;
}

.eazyclean-seo-prestige-stars {
	display: flex;
	gap: 2px;
}

/* ── Responsive: Timeline + Today + Prestige ────────────────── */

@media (max-width: 768px) {
	.eazyclean-seo-today-grid {
		grid-template-columns: 1fr;
	}

	.eazyclean-seo-timeline {
		padding-left: 56px;
	}

	.eazyclean-seo-timeline::before {
		left: 21px;
	}

	.eazyclean-seo-timeline::after {
		left: 19px;
	}

	.eazyclean-seo-timeline-marker {
		left: -56px;
		width: 44px;
	}

	.eazyclean-seo-timeline-icon {
		width: 42px;
		height: 42px;
	}

	.eazyclean-seo-timeline-icon svg {
		width: 18px;
		height: 18px;
	}

	.eazyclean-seo-prestige-card {
		padding: 2rem 1.5rem;
	}

	.eazyclean-seo-prestige-text {
		font-size: 1.2rem;
	}
}

/* ── Used Machines Benefits ─────────────────────────────────── */

/* ── Used Machine Cards ──────────────────────────────────────── */

.eazyclean-seo-used-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--ec-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.eazyclean-seo-used-card:hover {
	border-color: rgba(0, 211, 242, 0.25);
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.eazyclean-seo-used-card-img {
	position: relative;
	height: 200px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(0, 211, 242, 0.03), rgba(21, 93, 252, 0.03));
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.eazyclean-seo-used-card-img img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.eazyclean-seo-used-card:hover .eazyclean-seo-used-card-img img {
	transform: scale(1.05);
}

.eazyclean-seo-used-year {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 3px 10px;
	font-size: 0.7rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	background: rgba(0, 0, 0, 0.4);
	border-radius: 9999px;
	backdrop-filter: blur(8px);
}

.eazyclean-seo-used-card-body {
	padding: 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.eazyclean-seo-used-card-footer {
	margin-top: auto;
}

.eazyclean-seo-used-card-header {
	margin-bottom: 0.75rem;
}

.eazyclean-seo-used-card-header h3 {
	font-family: var(--ec-font-heading);
	font-size: 1.05rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.5rem 0;
}

.eazyclean-seo-used-badges {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.eazyclean-seo-used-condition {
	padding: 2px 8px;
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ec-primary);
	background: rgba(0, 211, 242, 0.1);
	border: 1px solid rgba(0, 211, 242, 0.2);
	border-radius: 9999px;
}

.eazyclean-seo-used-status {
	padding: 2px 8px;
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #22c55e;
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.2);
	border-radius: 9999px;
}

.eazyclean-seo-used-status--reserved {
	color: #f59e0b;
	background: rgba(245, 158, 11, 0.1);
	border-color: rgba(245, 158, 11, 0.2);
}

.eazyclean-seo-used-details {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
	margin: 0 0 1rem 0;
}

.eazyclean-seo-used-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.eazyclean-seo-used-price {
	font-family: var(--ec-font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ec-primary);
}

.eazyclean-seo-used-benefits .eazyclean-seo-grid {
	gap: 16px;
}

.eazyclean-seo-benefit-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px 16px 24px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--benefit-color, var(--ec-primary)) 6%, transparent), color-mix(in srgb, var(--benefit-color, var(--ec-primary)) 2%, transparent));
	border: 1px solid color-mix(in srgb, var(--benefit-color, var(--ec-primary)) 15%, transparent);
	border-radius: var(--ec-radius-sm);
	color: rgba(255, 255, 255, 0.88);
	font-size: 16px;
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.eazyclean-seo-benefit-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 3px;
	background: var(--benefit-color, var(--ec-primary));
	opacity: 0.8;
	transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.eazyclean-seo-benefit-item::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -20px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--benefit-color, var(--ec-primary));
	opacity: 0.04;
	transform: translateY(-50%);
	transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
}

.eazyclean-seo-benefit-item:hover {
	border-color: color-mix(in srgb, var(--benefit-color, var(--ec-primary)) 40%, transparent);
	background: linear-gradient(135deg, color-mix(in srgb, var(--benefit-color, var(--ec-primary)) 10%, transparent), color-mix(in srgb, var(--benefit-color, var(--ec-primary)) 4%, transparent));
	transform: translateX(4px);
	box-shadow: 0 4px 20px color-mix(in srgb, var(--benefit-color, var(--ec-primary)) 12%, transparent);
}

.eazyclean-seo-benefit-item:hover::before {
	opacity: 1;
	box-shadow: 0 0 12px color-mix(in srgb, var(--benefit-color, var(--ec-primary)) 40%, transparent);
}

.eazyclean-seo-benefit-item:hover::after {
	opacity: 0.08;
	width: 100px;
	height: 100px;
}

.eazyclean-seo-benefit-item:nth-child(1)  { --benefit-color: #00d3f2; }
.eazyclean-seo-benefit-item:nth-child(2)  { --benefit-color: #22c55e; }
.eazyclean-seo-benefit-item:nth-child(3)  { --benefit-color: #f59e0b; }
.eazyclean-seo-benefit-item:nth-child(4)  { --benefit-color: #7c3aed; }
.eazyclean-seo-benefit-item:nth-child(5)  { --benefit-color: #3b82f6; }
.eazyclean-seo-benefit-item:nth-child(6)  { --benefit-color: #ef4444; }

.eazyclean-seo-benefit-icon {
	width: 28px;
	height: 28px;
	color: var(--benefit-color, var(--ec-primary));
	flex-shrink: 0;
	filter: drop-shadow(0 0 4px color-mix(in srgb, var(--benefit-color, var(--ec-primary)) 30%, transparent));
	transition: transform 0.3s ease, filter 0.3s ease;
}

.eazyclean-seo-benefit-item:hover .eazyclean-seo-benefit-icon {
	transform: scale(1.15);
	filter: drop-shadow(0 0 8px color-mix(in srgb, var(--benefit-color, var(--ec-primary)) 50%, transparent));
}

.eazyclean-seo-benefit-item svg:not(.eazyclean-seo-benefit-icon) {
	width: 20px;
	height: 20px;
	color: var(--benefit-color, var(--ec-primary));
	flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
 *  FULLWIDTH OVERRIDES for Landing Pages
 *  Body gets dark bg, container goes fullwidth, sections centered.
 * ══════════════════════════════════════════════════════════════ */

body.eazyclean-seo-landing-page {
	background: var(--ec-bg) !important;
	margin: 0;
}

/* Remove theme content wrappers' width constraints */
body.eazyclean-seo-landing-page #primary,
body.eazyclean-seo-landing-page .content-area,
body.eazyclean-seo-landing-page .site-main,
body.eazyclean-seo-landing-page .eazyclean-seo-main,
body.eazyclean-seo-landing-page .site-content,
body.eazyclean-seo-landing-page .entry-content {
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
}

/* Outer container goes fullwidth */
body.eazyclean-seo-landing-page .eazyclean-seo-container {
	max-width: none;
	width: 100%;
	padding: 0;
}

/* Push content below fixed/sticky header */
.eazyclean-seo-landing {
	padding-top: 4rem;
}

/* All direct children of landing wrapper get centered */
.eazyclean-seo-landing > * {
	max-width: var(--ec-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* Hero goes edge-to-edge fullwidth */
.eazyclean-seo-landing > .eazyclean-seo-hero {
	max-width: none;
	border-radius: 0;
}

/* Hero inner content stays centered */
.eazyclean-seo-landing > .eazyclean-seo-hero .eazyclean-seo-hero-inner {
	max-width: var(--ec-max-width);
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 768px) {
	.eazyclean-seo-landing > * {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* ══════════════════════════════════════════════════════════════
 *  CTA / SERVICE & SUPPORT SECTION
 * ══════════════════════════════════════════════════════════════ */

.eazyclean-seo-cta {
	text-align: center;
}

.eazyclean-seo-cta-inner {
	max-width: 800px;
	margin: 0 auto;
}

.eazyclean-seo-cta .eazyclean-seo-section-subtitle {
	color: var(--ec-text-body);
	font-size: 16px;
	margin-bottom: 40px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* Contact Cards Row */
.eazyclean-seo-cta-contacts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 32px;
}

.eazyclean-seo-cta-contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 24px 16px;
	background: var(--ec-bg-card);
	backdrop-filter: var(--ec-glass-blur);
	border: 1px solid var(--ec-border);
	border-radius: var(--ec-radius);
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.eazyclean-seo-cta-contact-card:hover {
	border-color: rgba(0, 211, 242, 0.3);
	background: rgba(0, 211, 242, 0.05);
}

.eazyclean-seo-cta-contact-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(0, 184, 219, 0.15), rgba(21, 93, 252, 0.15));
}

.eazyclean-seo-cta-contact-icon svg,
.eazyclean-seo-cta-contact-icon .eazyclean-seo-icon {
	width: 20px;
	height: 20px;
	color: var(--ec-primary);
}

.eazyclean-seo-cta-contact-card small {
	font-size: 12px;
	color: var(--ec-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.eazyclean-seo-cta-contact-card strong {
	font-size: 15px;
	color: #fff;
	font-weight: 600;
}

/* Support Portal Badge */
.eazyclean-seo-support-badge {
	background: linear-gradient(135deg, rgba(0, 184, 219, 0.08), rgba(21, 93, 252, 0.08));
	border: 1px solid rgba(0, 211, 242, 0.2);
	border-radius: var(--ec-radius);
	padding: 28px 32px;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.eazyclean-seo-support-badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #00b8db, #155dfc, #00b8db);
	background-size: 200% 100%;
	animation: ecBadgeGradient 4s ease infinite;
}

@keyframes ecBadgeGradient {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.eazyclean-seo-support-badge-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.eazyclean-seo-support-badge-seal {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #00b8db, #155dfc);
	flex-shrink: 0;
}

.eazyclean-seo-support-badge-seal svg {
	color: #fff;
}

.eazyclean-seo-support-badge-title {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.eazyclean-seo-support-badge-label {
	font-family: var(--ec-font-heading);
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}

.eazyclean-seo-support-badge-url {
	font-size: 13px;
	color: var(--ec-primary);
	font-weight: 500;
}

.eazyclean-seo-support-badge-verified {
	flex-shrink: 0;
}

.eazyclean-seo-support-badge-desc {
	color: var(--ec-text-body);
	font-size: 14px;
	margin-bottom: 18px;
	line-height: 1.6;
}

.eazyclean-seo-support-badge-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 24px;
	margin-bottom: 20px;
}

.eazyclean-seo-support-badge-features span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--ec-text-body);
	font-weight: 500;
}

.eazyclean-seo-support-badge-features svg {
	color: var(--ec-primary);
	flex-shrink: 0;
}

.eazyclean-seo-support-badge-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

@media (max-width: 768px) {
	.eazyclean-seo-cta-contacts {
		grid-template-columns: 1fr;
	}

	.eazyclean-seo-support-badge {
		padding: 20px;
	}

	.eazyclean-seo-support-badge-features {
		grid-template-columns: 1fr;
	}
}

/* ══════════════════════════════════════════════════════════════
 *  CONTACT FORM SECTION
 * ══════════════════════════════════════════════════════════════ */

.eazyclean-seo-contact-section {
	text-align: center;
}

.eazyclean-seo-contact-subtitle {
	color: var(--ec-text-body);
	font-size: 16px;
	margin: 0 auto 32px;
	text-align: center;
	max-width: 600px;
}

/* ── Title Arrows ──────────────────────────────────────────── */

.eazyclean-seo-title-arrow {
	display: inline-block;
	color: var(--ec-primary);
	font-size: 1.5rem;
	animation: ecArrowBounce 2s ease-in-out infinite;
	vertical-align: middle;
}

.eazyclean-seo-title-arrow-left {
	margin-right: 12px;
}

.eazyclean-seo-title-arrow-right {
	margin-left: 12px;
}

@keyframes ecArrowBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(4px); }
}

/* ── Form Trust Indicators ─────────────────────────────────── */

.eazyclean-seo-form-trust {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.eazyclean-seo-form-trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--ec-primary);
	font-weight: 500;
}

.eazyclean-seo-form-trust-item svg {
	flex-shrink: 0;
	color: var(--ec-primary);
}

/* ── Submit Button Icon ────────────────────────────────────── */

.eazyclean-seo-form-submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* ── Stylish Form Border ───────────────────────────────────── */

.eazyclean-seo-contact-section .eazyclean-seo-contact-form {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 2px solid rgba(0, 211, 242, 0.35);
	border-radius: 16px;
	box-shadow: 0 0 40px rgba(0, 211, 242, 0.1),
	            0 0 80px rgba(21, 93, 252, 0.05),
	            inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ── Buy Now Section ───────────────────────────────────────── */

.eazyclean-seo-buy-now {
	margin-top: 32px;
	text-align: center;
}

.eazyclean-seo-buy-now-divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.eazyclean-seo-buy-now-divider::before,
.eazyclean-seo-buy-now-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--ec-border);
}

.eazyclean-seo-buy-now-divider span {
	color: var(--ec-text-muted);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.eazyclean-seo-buy-now-text {
	color: var(--ec-text-body);
	font-size: 15px;
	margin-bottom: 16px;
}

.eazyclean-seo-buy-now-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 768px) {
	.eazyclean-seo-form-trust {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
}

/* ========================================
   SECTION SUBTITLE / TITLE (matching theme)
   ======================================== */

/* Section subtitle + title (left-aligned, matching homepage theme) */
p.eazyclean-seo-section-subtitle,
.eazyclean-seo-section .eazyclean-seo-section-subtitle {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--ec-primary);
	margin-bottom: 0.75rem;
	text-align: left;
}

h2.eazyclean-seo-section-title,
.eazyclean-seo-section h2.eazyclean-seo-section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	margin: 0 0 1.5rem 0;
	text-align: left;
	background: linear-gradient(to bottom right, #fff, #fff, rgba(255, 255, 255, 0.6));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: normal;
}

/* Centered sections: use .eazyclean-seo-centered on the section */
.eazyclean-seo-section.eazyclean-seo-centered,
.eazyclean-seo-section.eazyclean-seo-centered p,
.eazyclean-seo-section.eazyclean-seo-centered h2,
.eazyclean-seo-section.eazyclean-seo-centered h3,
.eazyclean-seo-section.eazyclean-seo-centered .eazyclean-seo-section-subtitle,
.eazyclean-seo-section.eazyclean-seo-centered h2.eazyclean-seo-section-title {
	text-align: center;
}

.eazyclean-seo-section.eazyclean-seo-centered .eazyclean-seo-section-subtitle,
.eazyclean-seo-section.eazyclean-seo-centered h2.eazyclean-seo-section-title {
	max-width: none;
	margin-left: auto;
	margin-right: auto;
}

/* ========================================
   INLINE CTA BLOCK
   ======================================== */

.eazyclean-seo-inline-cta {
	padding: 3rem 0;
}

.eazyclean-seo-inline-cta-inner {
	text-align: center;
	background: linear-gradient(135deg, rgba(0, 211, 242, 0.06), rgba(21, 93, 252, 0.04));
	border: 1px solid rgba(0, 211, 242, 0.15);
	border-radius: var(--ec-radius, 15px);
	padding: 3rem 2rem;
}

.eazyclean-seo-inline-cta-inner h3 {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #fff;
}

.eazyclean-seo-inline-cta-inner p {
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 1.5rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.eazyclean-seo-inline-cta-inner .eazyclean-seo-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* ========================================
   SOLVENT COMPATIBILITY NOTE
   ======================================== */

.eazyclean-seo-solvent-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 24px;
	background: rgba(0, 211, 242, 0.04);
	border: 1px solid rgba(0, 211, 242, 0.12);
	border-radius: 9999px;
	max-width: 700px;
	margin: 1rem auto 3rem;
}

.eazyclean-seo-solvent-note span {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.4;
}

.eazyclean-seo-solvent-note svg {
	flex-shrink: 0;
}

@media (max-width: 640px) {
	.eazyclean-seo-solvent-note {
		border-radius: 12px;
		text-align: center;
		flex-direction: column;
		gap: 6px;
	}
}

/* ========================================
   GATED BROCHURE DOWNLOAD
   ======================================== */

.eazyclean-seo-brochure-section {
	padding: 64px 0 40px;
}

.eazyclean-seo-brochure-card {
	background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
	border: 1px solid rgba(0, 211, 242, 0.15);
	border-radius: var(--ec-radius, 15px);
	padding: 2rem;
	max-width: 480px;
	margin: 0 auto;
	text-align: center;
}

.eazyclean-seo-brochure-icon {
	margin-bottom: 0.75rem;
}

.eazyclean-seo-brochure-card h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.4rem;
}

.eazyclean-seo-brochure-step1 > p,
.eazyclean-seo-brochure-card > p {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.85rem;
	margin-bottom: 1.25rem;
	line-height: 1.5;
}

.eazyclean-seo-brochure-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

/* Phone row with country code dropdown */
.eazyclean-seo-brochure-phone-row {
	display: flex;
	gap: 0;
}

.eazyclean-seo-brochure-phone-row .eazyclean-seo-form-input {
	border-radius: 0 var(--ec-radius, 10px) var(--ec-radius, 10px) 0;
	flex: 1;
}

.eazyclean-seo-phone-code-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 14px 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-right: none;
	border-radius: var(--ec-radius, 10px) 0 0 var(--ec-radius, 10px);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: border-color 0.2s ease;
	font-family: var(--ec-font-body, 'Inter', sans-serif);
	box-sizing: border-box;
}

.eazyclean-seo-phone-code-toggle:hover {
	border-color: rgba(0, 211, 242, 0.3);
}

.eazyclean-seo-phone-code-toggle img {
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.eazyclean-seo-phone-code-toggle svg {
	color: rgba(255, 255, 255, 0.4);
}

.eazyclean-seo-phone-code-dropdown {
	position: relative;
}

.eazyclean-seo-phone-code-list {
	display: none;
	position: absolute;
	bottom: calc(100% + 4px);
	left: 0;
	background: #1a2744;
	border: 1px solid rgba(0, 211, 242, 0.2);
	border-radius: 12px;
	padding: 6px;
	z-index: 100;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
	min-width: 220px;
	max-height: 240px;
	overflow-y: auto;
}

.eazyclean-seo-phone-code-dropdown.is-open .eazyclean-seo-phone-code-list {
	display: block;
	animation: ecFadeSlideIn 0.15s ease;
}

.eazyclean-seo-phone-code-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 12px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	transition: background 0.15s ease;
}

.eazyclean-seo-phone-code-item:hover {
	background: rgba(0, 211, 242, 0.1);
	color: #fff;
}

.eazyclean-seo-phone-code-item.is-selected {
	background: rgba(0, 211, 242, 0.15);
	color: var(--ec-primary, #00d3f2);
}

.eazyclean-seo-phone-code-item img {
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
	flex-shrink: 0;
}

.eazyclean-seo-phone-code-item .ec-dial {
	min-width: 40px;
	font-weight: 600;
	color: var(--ec-primary, #00d3f2);
}

.eazyclean-seo-brochure-trigger,
.eazyclean-seo-brochure-submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	justify-content: center;
}

@keyframes ecFadeSlideIn {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

.eazyclean-seo-brochure-privacy {
	margin-top: 0.75rem;
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 640px) {
	.eazyclean-seo-brochure-form { grid-template-columns: 1fr; }
}

/* ========================================
   KEY FEATURES GRID (EC Series)
   ======================================== */

.eazyclean-seo-key-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.eazyclean-seo-key-feature {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--ec-radius, 15px);
	padding: 1.75rem;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.eazyclean-seo-key-feature::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--kf-color, var(--ec-primary));
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.eazyclean-seo-key-feature:hover {
	border-color: color-mix(in srgb, var(--kf-color) 40%, transparent);
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px color-mix(in srgb, var(--kf-color) 15%, transparent);
}

.eazyclean-seo-key-feature:hover::before {
	opacity: 1;
}

.eazyclean-seo-key-feature-icon {
	width: 48px;
	height: 48px;
	color: var(--kf-color, var(--ec-primary));
	margin-bottom: 1rem;
	opacity: 0.85;
}

.eazyclean-seo-key-feature-icon svg {
	width: 100%;
	height: 100%;
}

.eazyclean-seo-key-feature h4 {
	font-family: var(--ec-font-heading, 'Outfit', sans-serif);
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.eazyclean-seo-key-feature p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 1024px) {
	.eazyclean-seo-key-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.eazyclean-seo-key-features-grid { grid-template-columns: 1fr; }
}

/* ========================================
   HOW IT WORKS (Process Timeline)
   ======================================== */

.eazyclean-seo-process-timeline {
	display: flex;
	gap: 0;
	margin-top: 2rem;
}

.eazyclean-seo-process-step {
	flex: 1;
	text-align: center;
	position: relative;
	padding: 0 0.5rem;
	opacity: 0;
	transform: translateY(30px) scale(0.95);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.eazyclean-seo-process-step.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.eazyclean-seo-process-step:hover {
	transform: translateY(-4px) scale(1.02);
}

.eazyclean-seo-process-icon {
	width: 5rem;
	height: 5rem;
	margin: 0 auto 1.25rem;
	border-radius: 16px;
	background: rgba(0, 211, 242, 0.04);
	border: 1px solid rgba(0, 211, 242, 0.12);
	padding: 0.4rem;
	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.eazyclean-seo-process-icon svg { width: 100%; height: 100%; display: block; }
.eazyclean-seo-process-icon svg * { animation-play-state: paused; }
.eazyclean-seo-process-step.is-visible .eazyclean-seo-process-icon svg * { animation-play-state: running; }

.eazyclean-seo-process-step:hover .eazyclean-seo-process-icon {
	transform: scale(1.12);
	border-color: var(--ec-primary);
	box-shadow: 0 0 24px rgba(0, 211, 242, 0.25);
}

@keyframes ecDrumSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ecGearReverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.eazyclean-seo-process-step h4 {
	font-family: var(--ec-font-heading, 'Outfit', sans-serif);
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #fff;
	transition: color 0.3s ease;
}

.eazyclean-seo-process-step:hover h4 { color: var(--ec-primary); }

.eazyclean-seo-process-step p {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.5;
}

@media (max-width: 768px) {
	.eazyclean-seo-process-timeline { flex-direction: column; gap: 1.5rem; }
	.eazyclean-seo-process-step {
		display: flex; text-align: left; gap: 1.25rem; padding: 0;
		transform: translateX(-20px) scale(0.95);
	}
	.eazyclean-seo-process-step.is-visible { transform: translateX(0) scale(1); }
	.eazyclean-seo-process-step:hover { transform: translateX(4px) scale(1.01); }
	.eazyclean-seo-process-icon { flex-shrink: 0; margin: 0; width: 4rem; height: 4rem; }
}

/* ========================================
   ROI CALCULATOR
   ======================================== */

.eazyclean-seo-roi-card {
	position: relative;
	overflow: visible;
	background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
	border: 1px solid rgba(0, 211, 242, 0.2);
	border-radius: var(--ec-radius, 15px);
	padding: 2.5rem;
	max-width: 720px;
	margin: 2rem auto 0;
	box-shadow: 0 0 40px rgba(0, 211, 242, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.eazyclean-seo-roi-inputs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.eazyclean-seo-roi-field label {
	display: block;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.eazyclean-seo-roi-slider-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.eazyclean-seo-roi-range {
	flex: 1;
	-webkit-appearance: none;
	appearance: none;
	height: 6px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.1);
	outline: none;
	cursor: pointer;
	margin: 0;
}

/* Track fill gradient */
.eazyclean-seo-roi-range::-webkit-slider-runnable-track {
	height: 6px;
	border-radius: 3px;
}

.eazyclean-seo-roi-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--ec-gradient-btn, linear-gradient(135deg, #00b8db, #155dfc));
	border: 2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 0 10px rgba(0, 184, 219, 0.4);
	cursor: grab;
	margin-top: -7px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.eazyclean-seo-roi-range::-webkit-slider-thumb:hover {
	box-shadow: 0 0 20px rgba(0, 184, 219, 0.6);
	transform: scale(1.15);
}

.eazyclean-seo-roi-range::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, #00b8db, #155dfc);
	border: 2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 0 10px rgba(0, 184, 219, 0.4);
	cursor: grab;
}

.eazyclean-seo-roi-range-val {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--ec-primary, #00d3f2);
	font-family: var(--ec-font-heading, 'Outfit', sans-serif);
	order: -1;
}

/* ROI Hero section (break-even + lifetime bar) */
.eazyclean-seo-roi-hero {
	margin-bottom: 1.5rem;
}

.eazyclean-seo-roi-hero-stat {
	text-align: left;
	margin-bottom: 1rem;
}

.eazyclean-seo-roi-hero-number {
	display: block;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--ec-primary);
	font-family: var(--ec-font-heading, 'Outfit', sans-serif);
	line-height: 1.2;
}

.eazyclean-seo-roi-hero-bar {
	margin-bottom: 0.5rem;
}

.eazyclean-seo-roi-bar-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 0.5rem;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.45);
}

.eazyclean-seo-roi-bar-labels strong {
	color: #22c55e;
}

.eazyclean-seo-roi-label {
	display: block;
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 0.4rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.eazyclean-seo-roi-value {
	display: block;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--ec-primary);
	font-family: var(--ec-font-heading, 'Outfit', sans-serif);
}

.eazyclean-seo-roi-bar-wrap {
	height: 8px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.eazyclean-seo-roi-bar {
	height: 100%;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--ec-primary, #00d3f2), #155dfc);
	transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 0 12px rgba(0, 211, 242, 0.3);
}

.eazyclean-seo-roi-details {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.eazyclean-seo-roi-detail {
	text-align: center;
	padding: 0.75rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.eazyclean-seo-roi-detail .eazyclean-seo-roi-value {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
}

/* ROI Currency custom dropdown */
.eazyclean-seo-roi-currency-row {
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.eazyclean-seo-roi-cur-dropdown {
	position: relative;
	display: inline-block;
}

.eazyclean-seo-roi-cur-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(0, 211, 242, 0.25);
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: var(--ec-font-body, 'Inter', sans-serif);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eazyclean-seo-roi-cur-toggle:hover {
	border-color: var(--ec-primary, #00d3f2);
	box-shadow: 0 0 12px rgba(0, 211, 242, 0.15);
}

.eazyclean-seo-roi-cur-toggle svg {
	color: var(--ec-primary, #00d3f2);
	transition: transform 0.2s ease;
}

.eazyclean-seo-roi-cur-dropdown.is-open .eazyclean-seo-roi-cur-toggle svg {
	transform: rotate(180deg);
}

.eazyclean-seo-roi-cur-flag {
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.eazyclean-seo-roi-cur-symbol {
	color: var(--ec-primary, #00d3f2);
	font-weight: 700;
}

.eazyclean-seo-roi-cur-code {
	color: rgba(255, 255, 255, 0.7);
}

/* Dropdown list */
.eazyclean-seo-roi-cur-list {
	display: none;
	position: absolute;
	bottom: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%);
	background: #1a2744;
	border: 1px solid rgba(0, 211, 242, 0.2);
	border-radius: 12px;
	padding: 6px;
	z-index: 100;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 211, 242, 0.1);
	min-width: 180px;
	max-height: 280px;
	overflow-y: auto;
}

.eazyclean-seo-roi-cur-dropdown.is-open .eazyclean-seo-roi-cur-list {
	display: block;
	animation: ecFadeIn 0.15s ease;
}

@keyframes ecFadeIn {
	from { opacity: 0; transform: translateX(-50%) translateY(6px); }
	to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.eazyclean-seo-roi-cur-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.75);
	transition: background 0.15s ease;
}

.eazyclean-seo-roi-cur-option:hover {
	background: rgba(0, 211, 242, 0.1);
	color: #fff;
}

.eazyclean-seo-roi-cur-option.is-selected {
	background: rgba(0, 211, 242, 0.15);
	color: var(--ec-primary, #00d3f2);
}

.eazyclean-seo-roi-cur-option img {
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
	flex-shrink: 0;
}

.eazyclean-seo-roi-cur-opt-symbol {
	font-weight: 700;
	min-width: 24px;
	color: var(--ec-primary, #00d3f2);
}

/* ROI Fetch live rate button (crypto only) */
.eazyclean-seo-roi-fetch-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	margin-left: 12px;
	background: rgba(247, 147, 26, 0.12);
	border: 1px solid rgba(247, 147, 26, 0.35);
	border-radius: 10px;
	color: #f7931a;
	font-size: 0.8rem;
	font-weight: 600;
	font-family: var(--ec-font-body, 'Inter', sans-serif);
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.eazyclean-seo-roi-fetch-btn:hover {
	background: rgba(247, 147, 26, 0.2);
	box-shadow: 0 0 15px rgba(247, 147, 26, 0.2);
}

.eazyclean-seo-roi-fetch-btn:disabled {
	opacity: 0.6;
	cursor: wait;
}

/* ROI Calculate button */
.eazyclean-seo-roi-calc-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	padding: 14px 32px;
}

/* ROI Break-Even Timeline Chart */
.eazyclean-seo-roi-chart {
	margin: 1.5rem 0 0.5rem;
	padding: 0 0.5rem;
}

.eazyclean-seo-roi-chart-bar {
	position: relative;
	display: flex;
	height: 48px;
	border-radius: 8px;
	overflow: visible;
	border: 1px solid rgba(255,255,255,0.08);
}

.eazyclean-seo-roi-chart-invest {
	background: linear-gradient(90deg, rgba(0,211,242,0.08), rgba(0,211,242,0.2));
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	border-radius: 8px 0 0 8px;
	position: relative;
}

.eazyclean-seo-roi-chart-profit {
	background: linear-gradient(90deg, rgba(34,197,94,0.15), rgba(34,197,94,0.35));
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	border-radius: 0 8px 8px 0;
}

.eazyclean-seo-roi-chart-marker {
	position: absolute;
	top: -8px;
	bottom: -8px;
	width: 3px;
	background: var(--ec-primary, #00d3f2);
	box-shadow: 0 0 12px var(--ec-primary, #00d3f2);
	transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
}

.eazyclean-seo-roi-chart-marker-label {
	position: absolute;
	top: -24px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--ec-primary, #00d3f2);
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: rgba(0,211,242,0.1);
	padding: 2px 8px;
	border-radius: 4px;
	border: 1px solid rgba(0,211,242,0.3);
}

/* Year ticks on timeline axis */
.eazyclean-seo-roi-chart-axis {
	position: relative;
	height: 20px;
	margin-top: 2px;
}

.eazyclean-seo-roi-chart-axis::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(255,255,255,0.1);
}

.eazyclean-seo-roi-tick {
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translateX(-50%);
}

.eazyclean-seo-roi-tick::before {
	content: '';
	width: 1px;
	height: 6px;
	background: rgba(255,255,255,0.2);
}

.eazyclean-seo-roi-tick span {
	font-size: 0.6rem;
	color: rgba(255,255,255,0.35);
	margin-top: 2px;
}

.eazyclean-seo-roi-tick.is-major span {
	color: rgba(255,255,255,0.55);
	font-size: 0.65rem;
}

.eazyclean-seo-roi-tick.is-major::before {
	height: 8px;
	background: rgba(255,255,255,0.3);
}

.eazyclean-seo-roi-tick.is-highlight span {
	color: var(--ec-primary, #00d3f2);
	font-weight: 700;
}

.eazyclean-seo-roi-tick.is-highlight::before {
	background: var(--ec-primary, #00d3f2);
	height: 10px;
}

.eazyclean-seo-roi-chart-labels {
	display: none;
}

.eazyclean-seo-roi-chart-legend {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 1rem;
	font-size: 0.75rem;
	color: rgba(255,255,255,0.5);
}

.eazyclean-seo-roi-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 3px;
	margin-right: 0.4rem;
	vertical-align: middle;
}

.eazyclean-seo-roi-dot-invest { background: rgba(0,211,242,0.25); border: 1px solid rgba(0,211,242,0.4); }
.eazyclean-seo-roi-dot-profit { background: rgba(34,197,94,0.3); border: 1px solid rgba(34,197,94,0.5); }

/* Money Rain Animation */
.eazyclean-seo-roi-rain {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 10;
	border-radius: var(--ec-radius, 15px);
}

.eazyclean-seo-roi-rain:not(.is-raining) { display: none; }

.eazyclean-seo-roi-coin {
	position: absolute;
	top: -30px;
	animation: ecMoneyFall 2s ease-in forwards;
	opacity: 0;
	pointer-events: none;
}

@keyframes ecMoneyFall {
	0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
	10%  { opacity: 1; }
	80%  { opacity: 0.8; }
	100% { transform: translateY(500px) rotate(360deg); opacity: 0; }
}

@media (max-width: 768px) {
	.eazyclean-seo-roi-inputs { grid-template-columns: 1fr; }
	.eazyclean-seo-roi-details { grid-template-columns: 1fr; }
}

/* ========================================
   PREMIUM QUALITY SEAL (matching homepage)
   ======================================== */

.eazyclean-seo-quality-section {
	position: relative;
	overflow: visible;
	background: linear-gradient(180deg, transparent 0%, rgba(6, 182, 212, 0.04) 30%, rgba(59, 130, 246, 0.03) 70%, transparent 100%);
}

.eazyclean-seo-quality-section::before,
.eazyclean-seo-quality-section::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.3), rgba(59, 130, 246, 0.2), transparent);
}
.eazyclean-seo-quality-section::before { top: 0; }
.eazyclean-seo-quality-section::after { bottom: 0; }

.eazyclean-seo-quality-layout {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4rem;
	align-items: center;
}

.eazyclean-seo-quality-badge-wrap {
	position: relative;
	width: 280px;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: visible;
}

.eazyclean-seo-quality-rays {
	position: absolute;
	inset: -30px;
	border-radius: 50%;
	background: conic-gradient(
		from 0deg,
		transparent 0deg, rgba(255,215,0,0.12) 10deg, transparent 20deg,
		transparent 30deg, rgba(6,182,212,0.1) 40deg, transparent 50deg,
		transparent 60deg, rgba(255,215,0,0.12) 70deg, transparent 80deg,
		transparent 90deg, rgba(6,182,212,0.1) 100deg, transparent 110deg,
		transparent 120deg, rgba(255,215,0,0.12) 130deg, transparent 140deg,
		transparent 150deg, rgba(6,182,212,0.1) 160deg, transparent 170deg,
		transparent 180deg, rgba(255,215,0,0.12) 190deg, transparent 200deg,
		transparent 210deg, rgba(6,182,212,0.1) 220deg, transparent 230deg,
		transparent 240deg, rgba(255,215,0,0.12) 250deg, transparent 260deg,
		transparent 270deg, rgba(6,182,212,0.1) 280deg, transparent 290deg,
		transparent 300deg, rgba(255,215,0,0.12) 310deg, transparent 320deg,
		transparent 330deg, rgba(6,182,212,0.1) 340deg, transparent 350deg,
		transparent 360deg
	);
	animation: ecSealRays 20s linear infinite;
	filter: blur(4px);
}

.eazyclean-seo-quality-rays::after {
	content: '';
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	background: radial-gradient(circle, transparent 40%, rgba(255,215,0,0.06) 60%, rgba(6,182,212,0.08) 75%, transparent 100%);
	animation: ecSealGlow 3s ease-in-out infinite;
}

@keyframes ecSealRays { to { transform: rotate(360deg); } }
@keyframes ecSealGlow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50%      { opacity: 1; transform: scale(1.08); }
}

.eazyclean-seo-quality-badge {
	position: relative;
	z-index: 2;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: linear-gradient(145deg, #1a2744, #0f172a);
	border: 3px solid transparent;
	background-clip: padding-box;
	box-shadow:
		0 0 0 3px rgba(255,215,0,0.4),
		0 0 30px rgba(255,215,0,0.15),
		0 0 60px rgba(6,182,212,0.1),
		inset 0 0 30px rgba(0,0,0,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: ecSealShimmer 4s ease-in-out infinite;
}

@keyframes ecSealShimmer {
	0%, 100% { box-shadow: 0 0 0 3px rgba(255,215,0,0.4), 0 0 30px rgba(255,215,0,0.15), 0 0 60px rgba(6,182,212,0.1), inset 0 0 30px rgba(0,0,0,0.3); }
	50%      { box-shadow: 0 0 0 3px rgba(255,215,0,0.6), 0 0 40px rgba(255,215,0,0.25), 0 0 80px rgba(6,182,212,0.15), inset 0 0 30px rgba(0,0,0,0.3); }
}

.eazyclean-seo-quality-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
	color: #ffd700;
}

.eazyclean-seo-quality-inner svg {
	margin-bottom: 0.25rem;
	filter: drop-shadow(0 0 8px rgba(255,215,0,0.5));
}

.eazyclean-seo-quality-title {
	font-family: var(--ec-font-heading, 'Outfit', sans-serif);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.eazyclean-seo-quality-subtitle {
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	opacity: 0.7;
}

.eazyclean-seo-quality-line {
	display: block;
	width: 50px;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(255,215,0,0.5), transparent);
	margin: 0.4rem 0;
}

.eazyclean-seo-quality-year {
	font-size: 0.6rem;
	letter-spacing: 0.15em;
	opacity: 0.45;
}

.eazyclean-seo-quality-content h2 {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 600;
	margin-bottom: 1rem;
	background: linear-gradient(to bottom right, #fff, #fff, rgba(255,255,255,0.6));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.eazyclean-seo-quality-content p {
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.eazyclean-seo-quality-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.eazyclean-seo-quality-feature {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

.eazyclean-seo-quality-check {
	color: #22c55e;
	font-size: 1rem;
	font-weight: 700;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.eazyclean-seo-quality-layout { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
	.eazyclean-seo-quality-badge-wrap { margin: 0 auto; width: 180px; height: 180px; }
	.eazyclean-seo-quality-badge { width: 150px; height: 150px; }
	.eazyclean-seo-quality-title { font-size: 1.1rem; }
	.eazyclean-seo-quality-features { grid-template-columns: 1fr; text-align: left; }
}

/* ========================================
   CERTIFICATIONS & MEMBERSHIPS
   ======================================== */

.eazyclean-seo-certs-section {
	max-width: var(--ec-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

.eazyclean-seo-certs-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 2.5rem 3rem;
	margin-top: 2.5rem;
}

.eazyclean-seo-cert-item {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.5);
	transition: opacity 0.3s ease;
	cursor: default;
}

.eazyclean-seo-cert-item:hover {
	opacity: 1;
}

.eazyclean-seo-cert-item img {
	max-height: 64px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.55;
	transition: opacity 0.3s ease;
}

.eazyclean-seo-cert-item--etl img {
	filter: invert(1);
	mix-blend-mode: screen;
	max-height: 110px;
}

.eazyclean-seo-cert-item--ctp img {
	filter: invert(1);
	mix-blend-mode: screen;
	max-height: 95px;
}

.eazyclean-seo-cert-item:hover img {
	opacity: 1;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.eazyclean-seo-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.eazyclean-seo-testimonial-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--ec-radius, 15px);
	padding: 1.5rem;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.eazyclean-seo-testimonial-card:hover {
	border-color: rgba(0, 211, 242, 0.2);
	transform: translateY(-2px);
}

.eazyclean-seo-testimonial-stars {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.eazyclean-seo-testimonial-text {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9rem;
	line-height: 1.65;
	font-style: italic;
	margin: 0 0 1.25rem 0;
	border: none;
	padding: 0;
}

.eazyclean-seo-testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.eazyclean-seo-testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ec-primary), #155dfc);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	color: #fff;
	flex-shrink: 0;
}

.eazyclean-seo-testimonial-name {
	font-weight: 600;
	font-size: 0.9rem;
	color: #fff;
}

.eazyclean-seo-testimonial-role {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.45);
}
