/* Section Start: Site Header */
:root {
	--header-height: 4rem;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--gray-100);
}

.header-inner {
	height: 4rem;
	display: flex;
	align-items: center;
}

.nav {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	min-width: 0;
}

.brand-name {
	display: inline-block;
	max-width: min(52vw, 18rem);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.brand-mark {
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	background: var(--miele-red);
	color: var(--white);
	transition: transform 0.2s ease;
}

.brand:hover .brand-mark {
	transform: scale(1.05);
}

.brand-mark svg {
	width: 1.5rem;
	height: 1.5rem;
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 2rem;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-600);
	transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
	color: var(--miele-red);
}

.link-underline {
	position: relative;
}

.link-underline::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width 0.25s ease;
}

.link-underline:hover::after,
.link-underline:focus-visible::after {
	width: 100%;
}

.nav-toggle {
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.6rem;
	border: 0;
	background: transparent;
	color: var(--gray-600);
	cursor: pointer;
	transition: color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
	color: var(--miele-red);
}

.nav-toggle svg {
	width: 1.5rem;
	height: 1.5rem;
}

.nav-mobile {
	display: none;
	border-top: 1px solid var(--gray-200);
	background: var(--white);
}

.nav-mobile.is-open {
	display: block;
}

.nav-mobile-inner {
	padding: 1rem 1.5rem 1.5rem;
}

.nav-mobile-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

.nav-mobile-links a {
	display: block;
	padding: 0.65rem 0;
	font-weight: 500;
	color: var(--gray-700);
	overflow-wrap: anywhere;
}

.nav-mobile-cta {
	margin-top: 1rem;
}

.nav-desktop .btn {
	margin-left: 1rem;
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
}

.home .site-content {
	padding-top: 0;
}

.site-content {
	padding-top: var(--header-height) !important;
}

.admin-bar .site-content {
	padding-top: var(--header-height) !important;
}
/* Section End: Site Header */

/* Section Start: Shared UI Components */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: 600;
	line-height: 1;
	transition: all 0.2s ease;
}

.btn-pill {
	border-radius: 999px;
}

.btn-sm {
	padding: 0.7rem 1rem;
	font-size: 0.875rem;
}

.btn-lg {
	padding: 1rem 1.5rem;
	font-size: 0.95rem;
}

.btn-dark {
	background: var(--miele-dark);
	color: var(--white);
}

.btn-dark:hover {
	background: var(--miele-red);
}

.btn-red {
	background: var(--miele-red);
	color: var(--white);
}

.btn-red:hover {
	background: var(--miele-accent);
}

.btn-light {
	background: var(--white);
	color: var(--miele-dark);
	border: 1px solid rgba(255, 255, 255, 0.85);
}

.btn-light:hover {
	background: var(--miele-red);
	color: var(--white);
}

.btn-outline {
	border: 2px solid var(--gray-200);
	color: var(--miele-dark);
	background: var(--white);
}

.btn-outline:hover {
	border-color: var(--miele-red);
	color: var(--miele-red);
}

.btn-shadow {
	box-shadow: 0 10px 25px -14px rgba(0, 0, 0, 0.45);
}

.btn-icon {
	font-size: 0.9em;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	color: var(--miele-dark);
}

.text-link:hover {
	color: var(--miele-red);
}

.text-link--light {
	color: var(--white);
}

.text-link--light:hover {
	color: #f5b2b2;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.9rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
}

.badge--light {
	background: var(--white);
	color: var(--gray-600);
}

.badge--soft {
	background: #f8eaea;
	color: var(--miele-red);
}

.badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #22c55e;
	animation: pulse 1.8s ease-in-out infinite;
}

.card-hover {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 30px -20px rgba(0, 0, 0, 0.35);
}
/* Section End: Shared UI Components */

/* Section Start: Hero */
.section-hero {
	min-height: 85vh;
	padding: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--white), var(--miele-warm) 50%, var(--gray-100));
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
}

.hero-orb--right {
	top: 25%;
	right: 0;
	width: 24rem;
	height: 24rem;
	background: rgba(183, 28, 28, 0.05);
	filter: blur(64px);
}

.hero-orb--left {
	left: 25%;
	bottom: 0;
	width: 16rem;
	height: 16rem;
	background: rgba(229, 231, 235, 0.5);
	filter: blur(40px);
}

.hero-shell {
	position: relative;
	width: 100%;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.hero-copy {
	max-width: 48rem;
}

.hero-badge {
	padding: 0.5rem 1rem;
	margin-bottom: 2rem;
	font-size: 0.875rem;
	font-weight: 500;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.hero-title {
	margin-top: 0.5rem;
	font-size: 2.25rem;
	line-height: 1.15;
	color: var(--miele-dark);
}

.hero-text {
	max-width: 42rem;
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.625;
	color: var(--gray-600);
}

.hero-actions {
	margin-top: 2.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero-btn {
	gap: 0.5rem;
	padding: 1rem 1.75rem;
	font-weight: 500;
}

.hero-btn-icon {
	width: 1rem;
	height: 1rem;
	transition: transform 0.3s ease;
}

.hero-btn svg {
	width: 1rem;
	height: 1rem;
	transition: transform 0.3s ease;
}

.hero-btn:hover .hero-btn-icon {
	transform: translateX(0.25rem);
}

.hero-btn:hover svg {
	transform: translateX(0.25rem);
}

.hero-btn-primary {
	box-shadow: 0 10px 30px -12px rgba(156, 163, 175, 0.45);
}

.hero-btn-secondary {
	border-width: 2px;
}
/* Section End: Hero */

/* Section Start: How It Works */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.step-card {
	padding: 2rem;
	border-radius: var(--radius-3xl);
	background: linear-gradient(180deg, var(--gray-50), var(--white));
	border: 1px solid var(--gray-100);
}

.step-number {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 3rem;
	line-height: 1;
	background: linear-gradient(135deg, var(--miele-red), var(--miele-accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.step-card h3 {
	margin-top: 0.6rem;
}

.step-card p {
	margin-top: 0.8rem;
}

.step-label {
	margin-top: 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--miele-red);
}

.step-label-icon {
	width: 1rem;
	height: 1rem;
}

.how-it-works .section-header {
	margin-bottom: 4rem;
}

.how-it-works .section-header p {
	max-width: 36rem;
}

.how-it-works .steps-grid {
	gap: 2rem;
}

.how-it-works .step-card {
	padding: 2rem;
}

.how-it-works .step-card h3 {
	margin-top: 1rem;
	font-size: 1.25rem;
}

.how-it-works .step-card p {
	margin-top: 0.75rem;
	line-height: 1.625;
}

.how-it-works .step-label {
	margin-top: 1.5rem;
}

.how-it-works .step-label-icon {
	width: 1.25rem;
	height: 1.25rem;
}
/* Section End: How It Works */

/* Section Start: Popular Guides */
.guides-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1rem;
}

.guide-card {
	display: block;
	border-radius: var(--radius-2xl);
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--gray-200);
}

.guide-media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
	overflow: hidden;
}

.guide-media-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.guide-overlay {
	position: absolute;
	inset: 0;
	background: rgba(183, 28, 28, 0.08);
	transition: background 0.25s ease;
}

.guide-tag {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--gray-600);
}

.guide-body {
	padding: 1.2rem;
}

.guide-body h3 {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1.05rem;
}

.guide-card:hover .guide-body h3 {
	color: var(--miele-red);
}

.guide-card:hover .guide-overlay {
	background: rgba(183, 28, 28, 0.16);
}

.guide-body p {
	margin-top: 0.5rem;
	font-size: 0.9rem;
}

.guide-meta {
	margin-top: 0.8rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.82rem;
	color: var(--gray-500);
}

.guide-meta-icon {
	width: 0.9rem;
	height: 0.9rem;
}
/* Section End: Popular Guides */

/* Section Start: Error Codes */
.error-codes {
	overflow: hidden;
	background: var(--miele-dark);
	position: relative;
	isolation: isolate;
}

.error-codes-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 50%, rgba(183, 28, 28, 0.3) 0%, transparent 50%);
	opacity: 0.1;
}

.error-codes-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

.error-codes h2 {
	font-size: clamp(1.9rem, 2.4vw, 2.35rem);
	line-height: 1.2;
}

.error-links {
	display: grid;
	gap: 0.75rem;
	margin: 2rem 0 1.5rem;
}

.error-link {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1.25rem;
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.25s ease, border-color 0.25s ease;
}

.error-link-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: rgba(183, 28, 28, 0.2);
	color: var(--miele-red);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.error-link-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.error-link-icon img {
	width: 1.5rem;
	height: 1.5rem;
	object-fit: contain;
}

.error-link-copy {
	flex: 1;
}

.error-link-arrow {
	color: var(--gray-500);
}

.error-link-arrow svg {
	width: 1.05rem;
	height: 1.05rem;
}

.error-link strong {
	display: block;
	font-size: 1.05rem;
	color: var(--white);
}

.error-link span {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.95rem;
	color: var(--gray-400);
}

.error-link:hover {
	background: rgba(255, 255, 255, 0.1);
}

.error-link:hover strong {
	color: #f6b0b0;
}

.error-link:hover .error-link-arrow {
	color: var(--white);
}

.text-link-icon {
	width: 1rem;
	height: 1rem;
}

.error-stat-shell {
	position: relative;
	width: 100%;
	/*max-width: 27rem;*/
	margin-left: auto;
}

.error-stat-border {
	width: 100%;
	aspect-ratio: 1 / 1;
	padding: 1px;
	border-radius: var(--radius-3xl);
	background: linear-gradient(135deg, rgba(183, 28, 28, 0.2), rgba(183, 28, 28, 0.02));
}

.error-stat-panel {
	width: 100%;
	height: 100%;
	border-radius: var(--radius-3xl);
	background: rgba(31, 41, 51, 0.5);
	border: 1px solid rgba(183, 28, 28, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
}

.error-stat-content {
	text-align: center;
	padding: 2rem;
}

.error-stat-icon {
	width: 6rem;
	height: 6rem;
	margin: 0 auto 1.5rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(183, 28, 28, 0.2);
	color: var(--miele-red);
}

.error-stat-icon svg {
	width: 3rem;
	height: 3rem;
}

.error-stat-icon img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
}

.error-stat-number {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--white);
}

.error-stat-label {
	margin-top: 0.25rem;
	color: var(--gray-400);
}
/* Section End: Error Codes */

/* Section Start: Safety & Recalls */
.safety-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

.safety-card {
	padding: 2rem;
	border-radius: var(--radius-3xl);
	background: linear-gradient(135deg, #fff5f5, #fff7ed);
	border: 1px solid #f6d3d3;
}

.safety-head {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.safety-card h3 {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1.125rem;
	color: var(--miele-dark);
}

.safety-head p {
	margin-top: 0.5rem;
	color: var(--gray-600);
}

.safety-alert-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: var(--miele-red);
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.safety-alert-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.safety-alert-icon img {
	width: 1.5rem;
	height: 1.5rem;
	object-fit: contain;
}

.safety-links {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

.safety-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: var(--white);
	border-radius: 0.75rem;
	font-weight: 500;
	color: var(--miele-dark);
	border: 1px solid #f1f5f9;
	transition: box-shadow 0.2s ease;
}

.safety-link:hover {
	box-shadow: 0 10px 20px -14px rgba(15, 23, 42, 0.45);
}

.safety-link-dot {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	flex-shrink: 0;
}

.safety-link-dot--red {
	background: #ef4444;
}

.safety-link-dot--orange {
	background: #f97316;
}

.safety-right .section-lead {
	margin-top: 1rem;
	margin-bottom: 0;
	font-size: 1.125rem;
	line-height: 1.625;
}

.safety-right h2 {
	margin-top: 0.5rem;
}

.safety-btn {
	margin-top: 2rem;
	padding: 0.75rem 1.5rem;
	font-weight: 500;
}

.safety-btn-icon {
	width: 1rem;
	height: 1rem;
	transition: transform 0.2s ease;
}

.safety-btn:hover .safety-btn-icon {
	transform: translateX(0.2rem);
}
/* Section End: Safety & Recalls */

/* Section Start: Safety Pages */
.section.safety-page {
	padding: 4rem 0;
}

.safety-page {
	background: var(--miele-warm);
	min-height: 100vh;
}

.safety-page-inner {
	max-width: 56rem;
	margin: 0 auto;
}

.safety-page-title {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 3vw, 2.5rem);
	font-weight: 700;
	color: var(--miele-dark);
}

.safety-page-lead {
	margin-top: 1rem;
	color: var(--gray-600);
	font-size: 1.0625rem;
	line-height: 1.6;
}

.safety-page-links {
	margin-top: 2rem;
	display: grid;
	gap: 1rem;
}

.safety-page-card {
	display: block;
	padding: 1rem;
	background: var(--white);
	border-radius: 0.75rem;
	color: var(--miele-dark);
	font-weight: 600;
	transition: box-shadow 0.2s ease;
}

.safety-page-card:hover {
	box-shadow: 0 10px 15px -10px rgba(15, 23, 42, 0.35);
}

.safety-page-card-title {
	font-size: 1.125rem;
}

.safety-page-list {
	margin-top: 2rem;
	display: grid;
	gap: 0.75rem;
}

.safety-page-item {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem;
	background: var(--white);
	border-radius: 0.75rem;
	color: var(--miele-dark);
	transition: box-shadow 0.2s ease;
}

.safety-page-item:hover {
	box-shadow: 0 10px 15px -10px rgba(15, 23, 42, 0.3);
}

.safety-page-item-meta {
	color: var(--gray-500);
	font-size: 0.875rem;
	white-space: nowrap;
}

.safety-page-content {
	margin-top: 1.25rem;
	color: var(--gray-700);
}

.safety-page-back {
	margin-top: 1.5rem;
	display: inline-block;
	color: var(--miele-red);
	font-weight: 500;
}

.safety-page-back:hover {
	text-decoration: underline;
}
/* Section End: Safety Pages */

/* Section Start: Services Page */
.services-page {
	background: var(--white);
}

.services-hero {
	background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
	color: var(--white);
	padding: 4rem 0;
}

.services-hero-inner {
	max-width: 80rem;
	margin: 0 auto;
}

.services-title {
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--white);
}

.services-lead {
	margin-top: 1rem;
	color: var(--gray-300);
	font-size: 1.25rem;
	line-height: 1.6;
}

.services-benefits {
	background: var(--miele-warm);
	padding: 4rem 0;
}

.services-benefits-inner {
	max-width: 80rem;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services-card {
	padding: 1.5rem;
	background: var(--white);
	border-radius: var(--radius-2xl);
	text-align: center;
}

.services-card-icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: var(--radius-2xl);
	background: rgba(227, 27, 35, 0.1);
	color: var(--miele-red);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.services-card-icon svg {
	width: 1.75rem;
	height: 1.75rem;
}

.services-card h3 {
	margin-top: 1rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--miele-dark);
}

.services-card p {
	margin-top: 0.5rem;
	color: var(--gray-600);
	font-size: 0.875rem;
}

.services-cta {
	background: var(--white);
	padding: 4rem 0;
	text-align: center;
}

.services-cta-inner {
	max-width: 48rem;
	margin: 0 auto;
}

.services-cta h2 {
	font-family: var(--font-display);
	font-size: 1.875rem;
	color: var(--miele-dark);
}

.services-cta p {
	margin-top: 1rem;
	color: var(--gray-600);
}

.services-cta .btn {
	margin-top: 2rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 0.75rem;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
}

.services-cta-icon {
	width: 1.25rem;
	height: 1.25rem;
}

.services-content {
	margin-top: 1.5rem;
	color: var(--gray-700);
}

.services-back {
	margin-top: 1.5rem;
	display: inline-block;
	color: var(--miele-red);
	font-weight: 500;
}

.services-back:hover {
	text-decoration: underline;
}
/* Section End: Services Page */

/* Section Start: Schedule Page */
.schedule-page {
	background: var(--white);
}

.schedule-hero {
	position: relative;
	padding: 3rem 0;
	overflow: hidden;
}

.schedule-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #ffffff 0%, var(--miele-warm) 55%, #f3f4f6 100%);
}

.schedule-hero-orb {
	position: absolute;
	top: 0;
	right: 0;
	width: 24rem;
	height: 24rem;
	background: rgba(227, 27, 35, 0.05);
	border-radius: 999px;
	filter: blur(60px);
}

.schedule-hero-inner {
	position: relative;
	max-width: 80rem;
	margin: 0 auto;
}

.schedule-hero-content {
	max-width: 42rem;
	margin: 0 auto;
	text-align: center;
}

.schedule-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: var(--white);
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-600);
	box-shadow: 0 6px 18px -12px rgba(15, 23, 42, 0.25);
	margin-bottom: 1.5rem;
}

.schedule-badge svg {
	width: 1rem;
	height: 1rem;
	color: var(--miele-red);
}

.schedule-title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 4vw, 3.75rem);
	font-weight: 600;
	color: var(--miele-dark);
}

.schedule-lead {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--gray-600);
}

.schedule-benefits {
	padding: 2rem 0;
	margin-top: -1rem;
}

.schedule-benefits-inner {
	max-width: 80rem;
	margin: 0 auto;
}

.schedule-benefits-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr);
}

.schedule-benefit-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	background: var(--white);
	border: 1px solid #f3f4f6;
	border-radius: var(--radius-2xl);
	box-shadow: 0 2px 8px -6px rgba(15, 23, 42, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.schedule-benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 28px -18px rgba(15, 23, 42, 0.35);
	border-color: rgba(227, 27, 35, 0.2);
}

.schedule-benefit-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.schedule-benefit-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.schedule-benefit-icon--green {
	background: #dcfce7;
	color: #16a34a;
}

.schedule-benefit-icon--blue {
	background: #dbeafe;
	color: #2563eb;
}

.schedule-benefit-icon--purple {
	background: #ede9fe;
	color: #7c3aed;
}

.schedule-benefit-title {
	font-weight: 600;
	color: var(--miele-dark);
}

.schedule-benefit-text {
	font-size: 0.875rem;
	color: var(--gray-500);
}

.schedule-form {
	padding: 2rem 0;
}

.schedule-form-inner {
	max-width: 64rem;
	margin: 0 auto;
}

.schedule-form-card {
	position: relative;
	background: var(--white);
	border-radius: var(--radius-3xl);
	border: 1px solid #e5e7eb;
	box-shadow: 0 6px 18px -16px rgba(15, 23, 42, 0.25);
	overflow: hidden;
}

.schedule-form-loading {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	z-index: 10;
	flex-direction: column;
	gap: 1rem;
	color: var(--gray-500);
	font-weight: 500;
	text-align: center;
}

.schedule-form-card[data-iframe-state='loaded'] .schedule-form-loading {
	display: none;
}

.schedule-spinner {
	width: 3rem;
	height: 3rem;
	border: 3px solid #e5e7eb;
	border-top-color: var(--miele-red);
	border-radius: 999px;
	animation: spin 1s linear infinite;
}

.schedule-iframe {
	display: block;
	padding-top: 100px;
}

.schedule-steps {
	padding: 3rem 0;
	background: var(--white);
	border-top: 1px solid #f3f4f6;
}

.schedule-steps-inner {
	max-width: 80rem;
	margin: 0 auto;
}

.schedule-steps-head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.schedule-steps-head h2 {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 600;
	color: var(--miele-dark);
}

.schedule-steps-head p {
	margin-top: 0.75rem;
	color: var(--gray-500);
}

.schedule-steps-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: minmax(0, 1fr);
}

.schedule-step {
	text-align: center;
}

.schedule-step-number {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	border-radius: var(--radius-2xl);
	background: rgba(227, 27, 35, 0.1);
	color: var(--miele-red);
	font-weight: 700;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.schedule-step h3 {
	font-weight: 600;
	color: var(--miele-dark);
	margin-bottom: 0.5rem;
}

.schedule-step p {
	font-size: 0.875rem;
	color: var(--gray-500);
}

.schedule-help {
	padding: 3rem 0;
	background: #f9fafb;
}

.schedule-help-inner {
	max-width: 80rem;
	margin: 0 auto;
}

.schedule-help-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: minmax(0, 1fr);
}

.schedule-help h2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--miele-dark);
	margin-bottom: 1.5rem;
}

.schedule-help-cards {
	display: grid;
	gap: 1rem;
}

.schedule-help-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	background: var(--white);
	border-radius: var(--radius-2xl);
	border: 1px solid #e5e7eb;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.schedule-help-card:hover {
	border-color: rgba(227, 27, 35, 0.4);
	box-shadow: 0 12px 24px -20px rgba(15, 23, 42, 0.35);
}

.schedule-help-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.schedule-help-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.schedule-help-icon--green {
	background: #dcfce7;
	color: #16a34a;
}

.schedule-help-icon--blue {
	background: #dbeafe;
	color: #2563eb;
}

.schedule-help-label {
	font-weight: 600;
	color: var(--miele-dark);
}

.schedule-help-value {
	color: var(--miele-red);
	font-weight: 500;
}

.schedule-help-text {
	color: var(--gray-500);
	font-size: 0.875rem;
}

.schedule-help-arrow {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--gray-400);
	margin-left: auto;
}

.schedule-checklist {
	background: var(--white);
	border-radius: var(--radius-2xl);
	border: 1px solid #e5e7eb;
	padding: 1.5rem;
	display: grid;
	gap: 1rem;
}

.schedule-checklist-item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.schedule-checklist-icon {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 999px;
	background: #dcfce7;
	color: #16a34a;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.schedule-checklist-icon svg {
	width: 0.875rem;
	height: 0.875rem;
}

.schedule-checklist-title {
	font-weight: 600;
	color: var(--miele-dark);
}

.schedule-checklist-text {
	font-size: 0.875rem;
	color: var(--gray-500);
}

.schedule-areas {
	padding: 3rem 0;
	background: var(--miele-dark);
	color: var(--white);
}

@media (min-width: 640px) {
	.schedule-benefits-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
	}
}

@media (min-width: 768px) {
	.schedule-steps-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.schedule-hero {
		padding: 4rem 0;
	}

	.schedule-form {
		padding: 3rem 0;
	}

	.schedule-steps {
		padding: 4rem 0;
	}

	.schedule-steps-grid {
		gap: 2rem;
	}

	.schedule-help {
		padding: 4rem 0;
	}

	.schedule-help-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 3rem;
	}

	.schedule-areas {
		padding: 4rem 0;
	}
}

.schedule-areas-inner {
	max-width: 80rem;
	margin: 0 auto;
	text-align: center;
}

.schedule-areas-head h2 {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 600;
}

.schedule-areas-head p {
	margin-top: 0.75rem;
	color: var(--gray-400);
}

.schedule-areas-tags {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	font-size: 0.875rem;
}

.schedule-areas-tags span {
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
}

.schedule-areas-foot {
	margin-top: 1.5rem;
	color: var(--gray-400);
	font-size: 0.875rem;
}

.schedule-areas-foot a {
	color: var(--white);
	text-decoration: underline;
}

.schedule-areas-foot a:hover {
	color: var(--miele-red);
}
/* Section End: Schedule Page */
/* Section Start: Contact Page */
.contact-page {
	background: var(--white);
}

.contact-hero {
	position: relative;
	padding: 3rem 0;
	overflow: hidden;
}

.contact-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #ffffff 0%, var(--miele-warm) 55%, #f3f4f6 100%);
}

.contact-hero-orb {
	position: absolute;
	top: 0;
	right: 0;
	width: 24rem;
	height: 24rem;
	background: rgba(227, 27, 35, 0.05);
	border-radius: 999px;
	filter: blur(60px);
}

.contact-hero-inner {
	position: relative;
	max-width: 80rem;
	margin: 0 auto;
}

.contact-hero-content {
	max-width: 42rem;
	margin: 0 auto;
	text-align: center;
}

.contact-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: var(--white);
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-600);
	box-shadow: 0 6px 18px -12px rgba(15, 23, 42, 0.25);
	margin-bottom: 1.5rem;
}

.contact-badge svg {
	width: 1rem;
	height: 1rem;
	color: var(--miele-red);
}

.contact-title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 4vw, 3.75rem);
	font-weight: 600;
	color: var(--miele-dark);
}

.contact-lead {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--gray-600);
}

.contact-options {
	padding: 2rem 0;
}

.contact-options-inner {
	max-width: 80rem;
	margin: 0 auto;
}

.contact-options-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr);
}

.contact-option-card {
	display: block;
	text-align: left;
	padding: 1.5rem;
	background: var(--white);
	border-radius: var(--radius-2xl);
	border: 1px solid #f3f4f6;
	box-shadow: 0 4px 12px -10px rgba(15, 23, 42, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-option-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 32px -18px rgba(15, 23, 42, 0.35);
}

.contact-option-icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-option-icon svg {
	width: 1.75rem;
	height: 1.75rem;
}

.contact-option-card--green .contact-option-icon {
	background: #dcfce7;
	color: #16a34a;
}

.contact-option-card--blue .contact-option-icon {
	background: #dbeafe;
	color: #2563eb;
}

.contact-option-card--purple .contact-option-icon {
	background: #ede9fe;
	color: #7c3aed;
}

.contact-option-card--green:hover .contact-option-icon {
	background: #22c55e;
	color: var(--white);
}

.contact-option-card--blue:hover .contact-option-icon {
	background: #3b82f6;
	color: var(--white);
}

.contact-option-card--purple:hover .contact-option-icon {
	background: #a855f7;
	color: var(--white);
}

.contact-option-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--miele-dark);
	margin-bottom: 0.5rem;
}

.contact-option-sub {
	font-size: 0.875rem;
	color: var(--gray-500);
	margin-bottom: 0.75rem;
}

.contact-option-value {
	font-weight: 600;
	color: var(--miele-red);
}

.contact-option-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	color: var(--miele-red);
}

.contact-option-cta svg {
	width: 1rem;
	height: 1rem;
}

.contact-main {
	padding: 3rem 0;
}

.contact-main-inner {
	max-width: 80rem;
	margin: 0 auto;
}

.contact-main-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
}

.contact-form-card {
	background: var(--white);
	border-radius: var(--radius-3xl);
	border: 1px solid #f3f4f6;
	box-shadow: 0 8px 20px -18px rgba(15, 23, 42, 0.25);
	padding: 1.5rem;
}

.contact-form-card h2 {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--miele-dark);
	margin-bottom: 0.5rem;
}

.contact-form-card p {
	color: var(--gray-500);
	margin-bottom: 1.5rem;
}

.contact-form-frame {
	position: relative;
	border-radius: 1.5rem;
	border: 1px solid #e5e7eb;
	overflow: hidden;
}

.contact-form-loading {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 1rem;
	background: var(--white);
	color: var(--gray-500);
	font-weight: 500;
	text-align: center;
	z-index: 10;
}

.contact-form-frame[data-iframe-state='loaded'] .contact-form-loading {
	display: none;
}

.contact-spinner {
	width: 3rem;
	height: 3rem;
	border: 3px solid #e5e7eb;
	border-top-color: var(--miele-red);
	border-radius: 999px;
	animation: spin 1s linear infinite;
}

.contact-iframe {
	display: block;
	padding-top: 100px;
}

.contact-form-frame iframe {
	display: block;
	width: 100%;
	padding-top: 100px;
}

.contact-sidebar {
	display: grid;
	gap: 0.5rem;
	align-content: start;
}

.contact-hours {
	background: var(--white);
	border-radius: var(--radius-2xl);
	border: 1px solid #f3f4f6;
	padding: 1.5rem;
	align-self: start;
}

.contact-hours-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.contact-hours-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.75rem;
	background: #fef3c7;
	color: #d97706;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.contact-hours-icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

.contact-hours h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--miele-dark);
	margin: 0;
}

.contact-hours-list {
	display: grid;
	font-size: 0.875rem;
}

.contact-hours-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid #f3f4f6;
}

.contact-hours-row:last-child {
	border-bottom: 0;
}

.contact-hours-label {
	color: var(--gray-600);
}

.contact-hours-value {
	font-weight: 600;
	color: var(--miele-dark);
}

.contact-hours-value.is-muted {
	color: var(--gray-400);
	font-weight: 500;
}

.contact-hours-note {
	margin-top: 1rem;
	font-size: 0.75rem;
	color: var(--gray-500);
}

.contact-response {
	background: linear-gradient(135deg, var(--miele-red) 0%, var(--miele-accent) 100%);
	border-radius: var(--radius-2xl);
	padding: 1.5rem;
	color: var(--white);
	align-self: start;
}

.contact-response-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.contact-response-head svg {
	width: 2rem;
	height: 2rem;
	color: rgba(255, 255, 255, 0.8);
}

.contact-response-title {
	font-weight: 600;
	color: var(--white);
	margin: 0;
}

.contact-response-subtitle {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0.125rem 0 0;
}

.contact-response-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.contact-response-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	padding: 0.75rem;
	text-align: center;
}

.contact-response-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	margin: 0;
}

.contact-response-label {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0.25rem 0 0;
}

.contact-emergency {
	display: flex;
	gap: 1rem;
	background: #fffbeb;
	border: 1px solid #fcd34d;
	border-radius: var(--radius-2xl);
	padding: 1.5rem;
	align-self: start;
}

.contact-emergency-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.75rem;
	background: #fef3c7;
	color: #d97706;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-emergency-icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

.contact-emergency h4 {
	font-size: 1rem;
	font-weight: 600;
	color: #92400e;
	margin-bottom: 0.25rem;
}

.contact-emergency p {
	font-size: 0.875rem;
	color: #b45309;
	margin: 0;
}

.contact-emergency-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #92400e;
}

.contact-emergency-link:hover {
	text-decoration: underline;
}

.contact-emergency-link svg {
	width: 1rem;
	height: 1rem;
}

.contact-faq {
	padding: 3rem 0;
	background: var(--white);
	border-top: 1px solid #f3f4f6;
}

.contact-faq-inner {
	max-width: 48rem;
	margin: 0 auto;
}

.contact-faq-head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.contact-faq-head h2 {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 600;
	color: var(--miele-dark);
}

.contact-faq-head p {
	margin-top: 0.75rem;
	color: var(--gray-500);
}

.contact-faq-list {
	display: grid;
	gap: 1rem;
}

.contact-faq-item {
	border: 1px solid #e5e7eb;
	border-radius: var(--radius-2xl);
	overflow: hidden;
}

.contact-faq-toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: none;
	border: 0;
	text-align: left;
	font-weight: 600;
	color: var(--miele-dark);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.contact-faq-toggle:hover {
	background: #f9fafb;
}

.contact-faq-toggle svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--gray-400);
	transition: transform 0.2s ease;
}

.contact-faq-toggle[aria-expanded='true'] svg {
	transform: rotate(180deg);
}

.contact-faq-panel {
	padding: 0 1.5rem 1.25rem;
	color: var(--gray-600);
}

@media (min-width: 640px) {
	.contact-options-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem;
	}

	.contact-option-card.is-wide {
		grid-column: span 2;
	}

	.contact-form-card {
		padding: 2rem;
	}
}

@media (min-width: 1024px) {
	.contact-hero {
		padding: 5rem 0;
	}

	.contact-options {
		padding: 3rem 0;
	}

	.contact-options-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.contact-option-card.is-wide {
		grid-column: span 1;
	}

	.contact-option-card {
		padding: 2rem;
		border-radius: var(--radius-3xl);
	}

	.contact-main {
		padding: 4rem 0;
	}

	.contact-form-card {
		padding: 2.5rem;
	}

	.contact-main-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 3rem;
	}

	.contact-form {
		grid-column: span 3;
	}

	.contact-sidebar {
		grid-column: span 2;
	}

	.contact-faq {
		padding: 4rem 0;
	}
}
/* Section End: Contact Page */
/* Section Start: About Page */
.about-page {
	background: var(--white);
}

.about-hero {
	background: linear-gradient(180deg, var(--miele-dark) 0%, #111827 100%);
	color: var(--white);
	padding: 4rem 0;
}

.about-hero-inner {
	max-width: 80rem;
	margin: 0 auto;
}

.about-hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 4vw, 3rem);
	font-weight: 700;
}

.about-hero-subtitle {
	margin-top: 1rem;
	font-size: 1.25rem;
	color: var(--gray-300);
}

.about-content {
	padding: 4rem 0;
}

.about-content-inner {
	max-width: 48rem;
	margin: 0 auto;
}

.about-prose h2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--miele-dark);
	margin-top: 3rem;
}

.about-prose h2:first-child {
	margin-top: 0;
}

.about-prose p {
	margin-top: 1rem;
	color: var(--gray-600);
	font-size: 1.125rem;
	line-height: 1.7;
}

.about-prose ul {
	margin-top: 1rem;
	display: grid;
	gap: 0.75rem;
	color: var(--gray-600);
}

.about-prose li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.about-offer-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--miele-red);
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.about-offer-icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

@media (min-width: 1024px) {
	.about-hero {
		padding: 4rem 0;
	}

	.about-content {
		padding: 4rem 0;
	}
}
/* Section End: About Page */
/* Section Start: Professional Service */
.pro-service {
	background: linear-gradient(180deg, var(--miele-warm) 0%, var(--white) 100%);
}

.pro-service-center {
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
}

.pro-service-badge {
	margin-bottom: 1.5rem;
}

.badge-icon {
	width: 1rem;
	height: 1rem;
}

.pro-service h2 {
	font-size: clamp(1.875rem, 3vw, 3rem);
}

.pro-service-lead {
	margin-top: 1.5rem;
	font-size: 1.25rem;
	line-height: 1.625;
	color: var(--gray-600);
}

.pro-service-card {
	margin-top: 3rem;
	padding: 2rem;
	border-radius: var(--radius-3xl);
	background: var(--white);
	border: 1px solid var(--gray-100);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.pro-service-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.pro-item {
	text-align: center;
}

.pro-item-icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pro-item-icon svg {
	width: 2rem;
	height: 2rem;
}

.pro-item-icon img {
	width: 2rem;
	height: 2rem;
	object-fit: contain;
}

.pro-item-icon--green {
	background: #ecfdf3;
	color: #15803d;
}

.pro-item-icon--blue {
	background: #eff6ff;
	color: #2563eb;
}

.pro-item-icon--purple {
	background: #f3e8ff;
	color: #9333ea;
}

.pro-item-title {
	margin-top: 1rem;
	font-weight: 600;
	color: var(--miele-dark);
}

.pro-item-desc {
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: var(--gray-500);
}

.pro-service-btn {
	margin-top: 2.5rem;
	padding-inline: 2rem;
}

.pro-service-btn-icon {
	width: 1.25rem;
	height: 1.25rem;
}
/* Section End: Professional Service */

/* Section Start: Trust */
.trust {
	overflow: hidden;
	background: var(--miele-dark);
}

.trust-orb {
	position: absolute;
	right: -6rem;
	bottom: -6rem;
	width: 24rem;
	height: 24rem;
	background: rgba(183, 28, 28, 0.1);
	border-radius: 50%;
	filter: blur(64px);
}

.trust-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.trust-card {
	position: relative;
	z-index: 2;
	padding: 2rem;
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-3xl);
}

.trust-icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1.5rem;
	border-radius: 1rem;
	background: rgba(183, 28, 28, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--miele-red);
	font-weight: 700;
}

.trust-icon svg {
	width: 2rem;
	height: 2rem;
}

.trust-icon img {
	width: 2rem;
	height: 2rem;
	object-fit: contain;
}

.trust-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--white);
}

.trust-card p {
	font-size: 0.9rem;
	color: var(--gray-400);
	line-height: 1.4;
}

.trust .section-header {
	margin-bottom: 4rem;
}

.trust .eyebrow {
	font-size: 0.875rem;
	font-weight: 500;
}

.trust h2 {
	margin-top: 0.5rem;
	font-size: 1.875rem;
	line-height: 1.2;
}
/* Section End: Trust */

/* Section Start: Guides */
.guides-main {
	padding-top: 0;
	background: var(--miele-warm);
	position: relative;
}


.guides-main::before {
	content: "";
	position: absolute;
	top: -4rem;
	left: 0;
	right: 0;
	height: 4rem;
	background: #f9fafb;
	pointer-events: none;
}

.guides-breadcrumb {
	background: var(--white);
	border-bottom: 1px solid var(--gray-100);
	padding: 0;
	position: relative;
	z-index: 2;
	display: block;
	min-height: 3rem;
	color: var(--gray-500);
	opacity: 1;
	visibility: visible;
}

.guides-breadcrumb-inner {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.guides-breadcrumb ol {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	font-size: 0.875rem;
	color: var(--gray-500) !important;
	margin: 0;
	padding: 0;
	list-style: none;
}

.guides-breadcrumb li {
	display: inline-flex !important;
	align-items: center;
}

.guides-breadcrumb a {
	color: var(--gray-500) !important;
	text-decoration: none;
	transition: color 0.2s ease;
}

.guides-breadcrumb a:hover {
	color: var(--miele-red);
}

.guides-breadcrumb li[aria-hidden="true"] {
	color: var(--gray-300);
}

.guides-breadcrumb svg {
	width: 1rem;
	height: 1rem;
	color: var(--gray-300);
	flex-shrink: 0;
}

.guides-breadcrumb span {
	color: var(--miele-dark) !important;
	font-weight: 500;
}

body:not(.admin-bar) .guides-breadcrumb {
	padding-top: 0.8rem;
}

.admin-bar .guides-breadcrumb {
	padding-top: 0.8rem;
}

@media (min-width: 1024px) {
	.guides-breadcrumb .container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

@media (max-width: 767px) {
	.guides-breadcrumb-inner {
		padding-top: 0.65rem;
		padding-bottom: 0.85rem;
	}

	.guides-breadcrumb ol {
		flex-wrap: wrap;
		row-gap: 0.35rem;
		white-space: normal;
		font-size: 0.8125rem;
	}

	.guides-breadcrumb li:last-child span {
		font-weight: 500;
		line-height: 1.35;
	}
}

.guides-hero {
	position: relative;
	padding: 3rem 0;
	overflow: hidden;
}

.guides-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #fff 0%, var(--miele-warm) 45%, var(--gray-100) 100%);
}

.guides-hero-orb {
	position: absolute;
	top: 0;
	right: 0;
	width: 24rem;
	height: 24rem;
	background: rgba(183, 28, 28, 0.06);
	filter: blur(64px);
	border-radius: 999px;
}

.guides-hero-inner {
	position: relative;
	max-width: 48rem;
	margin: 0 auto;
}

.guides-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 1rem;
	margin-bottom: 1.5rem;
	border-radius: 999px;
	background: var(--white);
	color: var(--gray-600);
	font-size: 0.875rem;
	font-weight: 500;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.guides-hero-badge svg {
	width: 1rem;
	height: 1rem;
	color: var(--miele-red);
}

.guides-hero h1 {
	font-size: clamp(2.25rem, 4.2vw, 3.75rem);
	line-height: 1.12;
}

.guides-hero p {
	margin-top: 1.5rem;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.62;
	color: var(--gray-600);
	max-width: 42rem;
}

.guides-hero-stats {
	margin-top: 2.1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.guides-hero-stats div {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.guides-hero-stats strong {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--miele-red);
}

.guides-hero-stats span {
	font-size: 0.86rem;
	color: var(--gray-500);
}

.guides-topics,
.guides-popular,
.guides-cta-wrap {
	padding: 3rem 0 4rem;
}

.guides-popular {
	background: var(--white);
	border-top: 1px solid var(--gray-100);
}

.guides-heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.guides-heading-row h2 {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	line-height: 1.25;
	margin: 0;
}

.guides-heading-row p {
	margin-top: 0.5rem;
	font-size: 1rem;
	color: var(--gray-500);
}

.guides-topics-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.guides-topic-card {
	display: block;
	padding: 1.5rem;
	border-radius: 1rem;
	background: var(--white);
	border: 1px solid var(--gray-100);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.guides-topic-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
	border-color: rgba(183, 28, 28, 0.2);
}

.garchive-icon {
	width: 3.5rem;
	height: 3.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	margin-bottom: 1rem;
}

.garchive-icon svg {
	width: 1.75rem;
	height: 1.75rem;
}

.garchive-icon--emerald {
	background: #d1fae5;
	color: #059669;
}

.garchive-icon--blue {
	background: #dbeafe;
	color: #2563eb;
}

.garchive-icon--amber {
	background: #fef3c7;
	color: #d97706;
}

.garchive-icon--purple {
	background: #ede9fe;
	color: #7c3aed;
}

.garchive-icon--red {
	background: #fee2e2;
	color: #dc2626;
}

.garchive-icon--gray {
	background: #f3f4f6;
	color: #4b5563;
}

.garchive-icon--cyan {
	background: #cffafe;
	color: #0891b2;
}

.guides-topic-card h3 {
	font-family: var(--font-body);
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
	color: var(--miele-dark);
}

.guides-topic-card p {
	margin-top: 0.65rem;
	font-size: 0.93rem;
	line-height: 1.55;
	color: var(--gray-500);
}

.guides-topic-meta {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.75rem;
	color: var(--gray-400);
}

.guides-topic-meta svg {
	width: 1.1rem;
	height: 1.1rem;
}

.guides-popular-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.guides-popular-card {
	border-radius: 1rem;
	overflow: hidden;
	background: var(--gray-50);
	border: 1px solid var(--gray-100);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.guides-popular-card:hover {
	transform: translateY(-4px);
	border-color: rgba(183, 28, 28, 0.2);
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.guides-popular-link {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.guides-popular-media {
	aspect-ratio: 16 / 9;
	background: linear-gradient(140deg, rgba(183, 28, 28, 0.1), rgba(183, 28, 28, 0.04));
	display: flex;
	align-items: center;
	justify-content: center;
}

.guides-popular-media-icon {
	color: rgba(183, 28, 28, 0.45);
}

.guides-popular-media-icon svg {
	width: 3rem;
	height: 3rem;
}

.guides-popular-body {
	flex: 1;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
}

.guides-popular-badge {
	display: inline-block;
	align-self: flex-start;
	padding: 0.32rem 0.65rem;
	border: 1px solid var(--gray-200);
	border-radius: 999px;
	background: var(--white);
	color: var(--gray-500);
	font-size: 0.74rem;
	font-weight: 500;
	margin-bottom: 0.8rem;
}

.guides-popular-body h3 {
	font-family: var(--font-body);
	font-size: 1.15rem;
	line-height: 1.35;
	margin: 0;
	color: var(--miele-dark);
}

.guides-popular-body p {
	margin-top: 0.65rem;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--gray-500);
}

.guides-popular-meta {
	margin-top: auto;
	padding-top: 0.9rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.76rem;
	color: var(--gray-400);
}

.guides-popular-meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.guides-popular-meta svg {
	width: 1rem;
	height: 1rem;
}

.guides-help {
	padding: 3rem 0 4rem;
	background: var(--miele-dark);
	color: var(--white);
}

.guides-help-header {
	text-align: center;
	margin-bottom: 3rem;
}

.guides-help-header h2 {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.guides-help-header p {
	margin-top: 0.75rem;
	color: var(--gray-400);
}

.guides-help-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.guides-help-card {
	text-align: center;
}

.guides-help-number {
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.45rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.guides-help-card h3 {
	color: var(--white);
	font-family: var(--font-body);
	font-size: 1.2rem;
	margin-bottom: 0.55rem;
}

.guides-help-card p {
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--gray-400);
}

.guides-help-card a {
	display: inline-flex;
	gap: 0.25rem;
	margin-top: 0.85rem;
	color: var(--miele-red);
	font-size: 0.86rem;
	font-weight: 500;
}

.guides-cta {
	border-radius: 1.5rem;
	padding: 2rem;
	text-align: center;
	color: var(--white);
	background: linear-gradient(145deg, var(--miele-red), var(--miele-accent));
}

.guides-cta h2 {
	color: var(--white);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.guides-cta p {
	margin: 0.9rem auto 0;
	max-width: 38rem;
	color: rgba(255, 255, 255, 0.82);
}

.guides-cta-actions {
	margin-top: 1.5rem;
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.guides-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.35rem;
	border-radius: 0.75rem;
	font-weight: 600;
	font-size: 0.95rem;
}

.guides-cta-btn--light {
	background: var(--white);
	color: var(--miele-red);
}

.guides-cta-btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
}

.guide-cat-hero {
	position: relative;
	padding: 3rem 0 4rem;
	overflow: hidden;
}

.guide-cat-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #fff 0%, var(--miele-warm) 48%, #f3f4f6 100%);
}

.guide-cat-hero-orb {
	position: absolute;
	top: 0;
	right: -2rem;
	width: 24rem;
	height: 24rem;
	background: rgba(183, 28, 28, 0.05);
	border-radius: 999px;
	filter: blur(64px);
}

.guide-cat-hero-inner {
	position: relative;
	max-width: 48rem;
}

.guide-cat-hero-icon {
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.5rem;
}

.guide-cat-hero-icon svg {
	width: 2rem;
	height: 2rem;
}

.guide-cat-hero h1 {
	font-size: clamp(2.25rem, 4vw, 3rem);
	line-height: 1.15;
}

.guide-cat-hero p {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.625;
	color: var(--gray-600);
	max-width: 42rem;
}

.guide-cat-hero-meta {
	margin-top: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.875rem;
	color: var(--gray-500);
}

.guide-cat-hero-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.guide-cat-hero-meta-item svg {
	width: 1rem;
	height: 1rem;
}

.guide-cat-list {
	padding: 3rem 0 4rem;
	background: var(--white);
}

.guide-cat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.guide-cat-card {
	background: #fff;
	border: 1px solid #f0f2f5;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.guide-cat-card:hover {
	transform: translateY(-2px);
	border-color: rgba(183, 28, 28, 0.2);
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
}

.guide-cat-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.guide-cat-card-media {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, rgba(183, 28, 28, 0.1) 0%, rgba(183, 28, 28, 0.05) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.guide-cat-card-media-icon {
	width: 3rem;
	height: 3rem;
	color: rgba(183, 28, 28, 0.45);
}

.guide-cat-card-media-icon svg {
	width: 100%;
	height: 100%;
}

.guide-cat-card-body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	height: 100%;
}

.guide-cat-card-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
}

.guide-cat-chip {
	display: inline-flex;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	background: #f3f4f6;
	color: #4b5563;
	font-weight: 500;
}

.guide-cat-time {
	color: var(--gray-400);
}

.guide-cat-card h2 {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.45;
	color: var(--miele-dark);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.guide-cat-card p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--gray-500);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.guide-cat-read {
	margin-top: 0.35rem;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	color: var(--miele-red);
	font-size: 0.875rem;
	font-weight: 500;
}

.guide-cat-empty {
	padding: 2.5rem 1rem;
	text-align: center;
}

.guide-cat-empty h3 {
	font-size: 1.2rem;
	color: var(--miele-dark);
}

.guide-cat-empty p {
	margin-top: 0.6rem;
	color: var(--gray-500);
}

.guide-cat-cta {
	padding: 3rem 0 4rem;
	background: #f9fafb;
	border-top: 1px solid #f0f2f5;
}

.guide-cat-cta-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
	padding: 2rem 2.25rem;
	background: var(--miele-dark);
	border-radius: 1.5rem;
	color: #fff;
}

.guide-cat-cta-panel h2 {
	margin: 0;
	font-size: clamp(1.55rem, 3vw, 2rem);
}

.guide-cat-cta-panel p {
	margin-top: 0.8rem;
	color: rgba(255, 255, 255, 0.75);
}

.guide-cat-cta-actions {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}

@media (max-width: 1024px) {
	.guides-main {
		padding-top: 0;
	}

	.guides-topics-grid,
	.guides-popular-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.guides-help-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.guide-cat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.guide-posts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.guide-cat-cta-panel {
		grid-template-columns: 1fr;
	}

	.guide-cat-cta-actions {
		flex-direction: row;
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.guides-topics,
	.guides-popular,
	.guides-help,
	.guides-cta-wrap {
		padding: 2rem 0 2.5rem;
	}

	.guides-hero {
		padding: 3rem 0;
	}

	.guides-topics-grid,
	.guides-popular-grid {
		grid-template-columns: 1fr;
	}

	.guides-cta {
		padding: 1.5rem 1.25rem;
	}

	.guide-cat-grid {
		grid-template-columns: 1fr;
	}

	.guide-posts-grid {
		grid-template-columns: 1fr;
	}

	.guide-single-hero {
		padding: 2.35rem 0 1.55rem;
	}

	.guide-single-hero-shell {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.guide-single-hero-badges {
		gap: 0.55rem;
		margin-bottom: 1.15rem;
	}

	.guide-single-hero-badge {
		font-size: 0.8125rem;
		padding: 0.42rem 0.82rem;
	}

	.guide-single-title {
		font-size: clamp(2.1rem, 11vw, 2.7rem);
		line-height: 1.08;
		letter-spacing: -0.015em;
	}

	.guide-single-excerpt {
		margin-top: 1.15rem;
		font-size: 1.02rem;
		line-height: 1.58;
	}

	.guide-single-meta {
		margin-top: 1.15rem;
		font-size: 0.8125rem;
		gap: 0.55rem 0.95rem;
	}

	.guide-cat-cta-panel {
		padding: 1.5rem;
	}

	.guide-cat-cta-actions .btn {
		width: 100%;
		justify-content: center;
	}
}

.guide-reading-progress {
	position: fixed;
	top: 4rem;
	left: 0;
	right: 0;
	height: 0.25rem;
	background: rgba(229, 231, 235, 0.7);
	z-index: 45;
}

.admin-bar .guide-reading-progress {
	top: calc(4rem + 32px);
}

.guide-reading-progress-bar {
	height: 100%;
	width: 0;
	background: var(--miele-red);
	transition: width 0.12s linear;
}

.guide-single-page {
	background: var(--white);
}

.guide-single-hero {
	min-height: 0;
	padding: 3rem 0;
}

.guide-single-hero-shell {
	position: relative;
}

.guide-single-hero-inner {
	max-width: 48rem;
}

.guide-single-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.guide-single-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.45rem 0.9rem;
	background: var(--white);
	border: 1px solid #f3f4f6;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-600);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.guide-single-hero-badge svg {
	width: 1rem;
	height: 1rem;
	color: var(--miele-red);
	flex-shrink: 0;
}

.guide-single-hero-badge:hover {
	color: var(--miele-red);
	border-color: rgba(183, 28, 28, 0.25);
}

.guide-single-title {
	font-size: clamp(1.875rem, 4vw, 3rem);
	line-height: 1.1;
	margin: 0;
	color: var(--miele-dark);
}

.guide-single-excerpt {
	margin-top: 1.5rem;
	max-width: 42rem;
	font-size: 1.125rem;
	line-height: 1.625;
	color: var(--gray-600);
}

.guide-single-meta {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	color: var(--gray-500);
	font-size: 0.875rem;
}

.guide-single-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}

.guide-single-meta-item svg {
	width: 1rem;
	height: 1rem;
	color: var(--gray-500);
	flex-shrink: 0;
}

@media (max-width: 991px) {
	.guide-single-hero {
		padding: 2.5rem 0;
	}

	.guide-single-hero-inner {
		max-width: 100%;
	}

	.guide-single-title {
		font-size: clamp(2rem, 7vw, 2.65rem);
		line-height: 1.08;
	}

	.guide-single-excerpt {
		margin-top: 1rem;
		font-size: 1.03rem;
		line-height: 1.55;
	}

	.guide-single-meta {
		margin-top: 1.1rem;
		gap: 0.55rem 1rem;
	}
}

.guide-single-main {
	padding-top: 3rem;
}

.guide-single-grid {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.guide-single-article {
	flex: 1;
	min-width: 0;
	max-width: 48rem;
}


.guide-single-sidebar {
	display: grid;
	gap: 1rem;
}

.guide-sidebar-card {
	background: linear-gradient(180deg, var(--gray-50), var(--white));
	border: 1px solid var(--gray-200);
	border-radius: 1.25rem;
	padding: 1.2rem;
}

.guide-sidebar-card h3 {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
}

.guide-sidebar-card--facts h3 {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.guide-sidebar-card--facts h3 svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--miele-red);
	flex-shrink: 0;
}

.guide-single-toc {
	list-style: none;
	margin: 0.9rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.25rem;
}

.guide-single-toc a {
	display: block;
	padding: 0.5rem 0.75rem;
	border-radius: 0.65rem;
	font-size: 0.875rem;
	color: var(--gray-600);
	transition: color 0.2s ease, background-color 0.2s ease;
}

.guide-single-toc a:hover {
	background: rgba(183, 28, 28, 0.05);
	color: var(--miele-red);
}

.guide-single-toc li.is-sub a {
	padding-left: 1.15rem;
	font-size: 0.82rem;
	color: var(--gray-500);
	position: relative;
}

.guide-single-toc li.is-sub a::before {
	content: "";
	position: absolute;
	left: 0.55rem;
	top: 50%;
	width: 0.3rem;
	height: 1px;
	background: var(--gray-300);
	transform: translateY(-50%);
}

.guide-sidebar-card--toc {
	padding: 1.5rem;
	border-radius: 1.5rem;
	border-color: #f3f4f6;
	background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.guide-sidebar-card--toc h3 {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--miele-dark);
	margin-bottom: 1rem;
}

.guide-sidebar-card--toc h3 svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--miele-red);
	flex-shrink: 0;
}

.guide-quick-facts {
	margin: 0.8rem 0 0;
	display: grid;
	gap: 0.6rem;
}

.guide-quick-facts div {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.875rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid #f3f4f6;
}

.guide-quick-facts div:last-child {
	border-bottom: 0;
}

.guide-quick-facts dt {
	color: var(--gray-500);
}

.guide-quick-facts dd {
	margin: 0;
	color: var(--miele-dark);
	font-weight: 600;
	text-align: right;
}

.guide-sidebar-card--cta {
	background: linear-gradient(135deg, var(--miele-red), var(--miele-accent));
	color: var(--white);
}

.guide-sidebar-card--cta h3,
.guide-sidebar-card--cta p {
	color: var(--white);
}

.guide-sidebar-card--cta p {
	margin-top: 0.55rem;
	color: rgba(255, 255, 255, 0.82);
}

.guide-sidebar-card--cta .btn {
	margin-top: 0.9rem;
}

.guide-single-related .guides-popular-body {
	padding: 1.4rem;
}

.guide-single-related .guides-popular-body h3 {
	font-size: 1.08rem;
}

.section.guide-single-feedback {
	background: var(--white);
	padding-top: 1.75rem;
	padding-bottom: 2.75rem;
}

.guide-single-feedback-shell {
	max-width: 56rem;
	text-align: center;
}

.guide-single-feedback-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--miele-red);
}

.guide-single-feedback-title {
	margin: 0.5rem 0 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
	color: var(--miele-dark);
	font-family: var(--font-display);
	font-weight: 600;
}

.guide-single-feedback-text {
	max-width: 34rem;
	margin: 1rem auto 0;
	color: var(--gray-600);
	line-height: 1.7;
}

.guide-single-feedback-actions {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.guide-single-feedback-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 1.75rem;
	border-radius: 999px;
	font-weight: 500;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.guide-single-feedback-btn svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.guide-single-feedback-btn:hover {
	transform: translateY(-1px);
}

.guide-single-feedback-btn--ghost {
	background: var(--white);
	border: 2px solid var(--gray-200);
	color: var(--miele-dark);
}

.guide-single-feedback-btn--ghost:hover {
	border-color: rgba(183, 28, 28, 0.45);
	color: var(--miele-red);
}

.guide-single-feedback-btn--primary {
	background: var(--miele-dark);
	border: 2px solid var(--miele-dark);
	color: var(--white);
	box-shadow: 0 10px 24px rgba(209, 213, 219, 0.3);
}

.guide-single-feedback-btn--primary:hover {
	background: var(--miele-red);
	border-color: var(--miele-red);
	color: var(--white);
}

@media (min-width: 64rem) {
	.section.guide-single-feedback {
		padding-top: 2.25rem;
		padding-bottom: 3.5rem;
	}
}

.guides-taxonomy {
	padding: 3rem 0 4rem;
}

.guide-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.guide-post-card {
	background: #fff;
	border: 1px solid #f0f2f5;
	border-radius: 1rem;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.guide-post-card:hover {
	transform: translateY(-2px);
	border-color: rgba(183, 28, 28, 0.2);
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
}

.guide-post-card-link {
	display: block;
	padding: 1.25rem;
	color: inherit;
}

.guide-post-card h2 {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.45;
	color: var(--miele-dark);
}

.guide-post-card p {
	margin-top: 0.6rem;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--gray-500);
}
/* Section End: Guides */

/* Section Start: Footer */
.site-footer {
	background: #f8fafc;
	border-top: 1px solid var(--gray-200);
}

.footer-inner {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.footer-brand {
	grid-column: span 2;
}

.brand-footer {
	margin-bottom: 0.7rem;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
}

.brand-footer:hover .brand-mark {
	transform: none;
}

.footer-text {
	max-width: 20rem;
	margin-top: 1rem;
	font-size: 0.875rem;
	color: var(--gray-500);
}

.footer-title {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--gray-800);
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.75rem;
}

.footer-links a {
	font-size: 0.875rem;
	color: var(--gray-600);
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: var(--miele-red);
}

.footer-bottom {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--gray-200);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.875rem;
	color: var(--gray-500);
	text-align: center;
}

.footer-bottom p {
	margin: 0;
}

.footer-note {
	font-size: 0.75rem;
	color: var(--gray-400);
}
/* Section End: Footer */

/* Section Start: Motion Utilities */
.fade-up {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
	animation-delay: 0.08s;
}

.delay-2 {
	animation-delay: 0.16s;
}

.delay-3 {
	animation-delay: 0.24s;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}
/* Section End: Motion Utilities */

/* Section Start: Error Codes Archive */
.ec-main {
	padding-top: 0;
	background: var(--miele-warm);
	position: relative;
	overflow-x: clip;
}


.ec-main::before {
	content: "";
	position: absolute;
	top: -4rem;
	left: 0;
	right: 0;
	height: 4rem;
	background: #f9fafb;
	pointer-events: none;
}

.ec-main .section {
	padding: 4rem 0;
}

.ec-hero {
	position: relative;
	padding: 4rem 0;
	overflow: hidden;
}

.ec-hero-shell {
	position: relative;
}

.ec-hero-copy {
	max-width: 48rem;
}

.ec-hero-badge {
	gap: 0.5rem;
	padding: 0.55rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.ec-hero-badge svg {
	width: 1rem;
	height: 1rem;
	color: var(--miele-red);
}

.ec-hero-copy h1 {
	margin: 1rem 0 1.25rem;
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	line-height: 1.1;
	color: var(--miele-dark);
}

.ec-hero-copy p {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.625;
	color: var(--gray-600);
}

.ec-hero-orb {
	position: absolute;
	border-radius: 9999px;
	pointer-events: none;
}

.ec-hero-orb--right {
	top: 0;
	right: -5rem;
	width: 20rem;
	height: 20rem;
	background: rgba(183, 28, 28, 0.08);
	filter: blur(3.25rem);
}

.ec-hero-orb--left {
	left: 15%;
	bottom: -4rem;
	width: 14rem;
	height: 14rem;
	background: rgba(156, 163, 175, 0.35);
	filter: blur(2.5rem);
}

.ec-search {
	margin-top: 2.5rem;
	max-width: 36rem;
}

.ec-search-wrap {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.5rem 0.5rem 0.35rem;
	background: var(--white);
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
	overflow: hidden;
}

.ec-search-wrap > * {
	min-width: 0;
}

.ec-search-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--gray-400);
	padding: 1rem 0.75rem 1rem 1rem;
	border-right: 1px solid #f3f4f6;
}

.ec-search-icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

.ec-search input {
	border: 0;
	background: transparent;
	font-size: 1.125rem;
	font-family: "JetBrains Mono", monospace;
	color: var(--miele-dark);
	padding: 1rem 0.75rem;
	width: 100%;
	min-width: 0;
}

.ec-search input:focus {
	outline: none;
}

.ec-search-btn {
	margin: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 0.75rem;
}

.ec-search p {
	margin-top: 0.65rem;
	font-size: 0.875rem;
	color: var(--gray-500);
	padding-left: 0.25rem;
}

.ec-steps {
	border-top: 1px solid #eceff3;
	border-bottom: 1px solid #eceff3;
}

.ec-steps-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.ec-step-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	border-radius: 1rem;
	background: rgba(249, 250, 251, 0.9);
}

.ec-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 0.75rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--miele-red);
	background: rgba(183, 28, 28, 0.12);
	flex-shrink: 0;
}

.ec-step-num--amber { color: #d97706; background: #fef3c7; }
.ec-step-num--green { color: #059669; background: #dcfce7; }
.ec-step-num--blue { color: #2563eb; background: #dbeafe; }

.ec-step-card h3 {
	margin: 0;
	font-size: 1rem;
	color: var(--miele-dark);
}

.ec-step-card p {
	margin: 0.35rem 0 0;
	font-size: 0.9rem;
	color: var(--gray-500);
}

.ec-appliance-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.ec-appliance-card {
	display: block;
	padding: 1.75rem;
	background: #fff;
	border: 1px solid #eceff3;
	border-radius: 1.5rem;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ec-appliance-card:hover {
	transform: translateY(-0.35rem);
	box-shadow: var(--shadow-card);
	border-color: rgba(183, 28, 28, 0.18);
}

.ec-appliance-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.ec-appliance-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	color: var(--miele-red);
	background: rgba(183, 28, 28, 0.1);
	border-radius: 0.9rem;
	transition: all 0.3s ease;
}

.ec-appliance-card:hover .ec-appliance-icon {
	background: var(--miele-red);
	color: var(--white);
	transform: scale(1.05);
}

.ec-appliance-icon svg {
	width: 1.7rem;
	height: 1.7rem;
}

.ec-appliance-count {
	padding: 0.3rem 0.55rem;
	border-radius: 9999px;
	background: #f3f4f6;
	font-size: 0.75rem;
	font-weight: 600;
	color: #4b5563;
}

.ec-appliance-card h3 {
	margin: 0;
	font-size: 1.35rem;
	font-family: var(--font-display);
	color: var(--miele-dark);
}

.ec-appliance-card p {
	margin: 0.45rem 0 0;
	font-size: 0.9rem;
	color: var(--gray-500);
}

.ec-appliance-foot {
	margin-top: 1rem;
	padding-top: 0.9rem;
	border-top: 1px solid #eceff3;
	font-size: 0.8rem;
	color: var(--gray-400);
}

.ec-appliance-foot strong {
	margin-left: 0.5rem;
	font-family: "JetBrains Mono", monospace;
	color: var(--miele-red);
}

.ec-popular-list {
	display: grid;
	gap: 0.7rem;
}

.ec-popular-item {
	display: grid;
	grid-template-columns: 5rem 1fr auto auto auto;
	gap: 1rem;
	align-items: center;
	padding: 1rem 1.2rem;
	border-radius: 1rem;
	background: #f9fafb;
	border: 1px solid transparent;
	color: inherit;
	min-width: 0;
}

.ec-popular-item:hover {
	background: rgba(183, 28, 28, 0.05);
	border-color: rgba(183, 28, 28, 0.2);
}

.ec-popular-code {
	font-family: "JetBrains Mono", monospace;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--miele-red);
}

.ec-popular-meaning {
	font-weight: 500;
	color: var(--miele-dark);
	min-width: 0;
	overflow-wrap: anywhere;
}

.ec-popular-term {
	font-size: 0.875rem;
	color: var(--gray-500);
	min-width: 0;
	overflow-wrap: anywhere;
}

.ec-popular-arrow {
	color: var(--gray-400);
}

.ec-severity-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1;
}

.ec-severity-dot {
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: currentColor;
}

.ec-severity-badge--low {
	background: #dcfce7;
	color: #15803d;
}

.ec-severity-badge--medium {
	background: #fef3c7;
	color: #b45309;
}

.ec-severity-badge--high {
	background: #fee2e2;
	color: #b91c1c;
}

.ec-directory {
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.ec-filter-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	padding: 0.85rem 1rem;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
	background: #fff;
}

.ec-filter-bar > * {
	min-width: 0;
}

.ec-filter-label,
.ec-sort-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--gray-500);
}

.ec-sort-label {
	margin-left: auto;
}

.ec-filter-select {
	padding: 0.55rem 0.85rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.625rem;
	background: #f9fafb;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-700);
}

.ec-filter-select:focus {
	outline: none;
	border-color: rgba(183, 28, 28, 0.45);
}

.ec-sort-buttons {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.ec-sort-btn {
	padding: 0.5rem 0.85rem;
	border: 1px solid transparent;
	border-radius: 0.625rem;
	background: #f3f4f6;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gray-600);
}

.ec-sort-btn.is-active {
	background: var(--miele-dark);
	color: var(--white);
}

.ec-directory-table {
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	background: #fff;
	overflow: hidden;
}

.ec-directory-head,
.ec-directory-row {
	display: grid;
	grid-template-columns: 1.2fr 1.6fr 4fr 1.2fr 1.2fr;
	gap: 1rem;
	align-items: center;
	padding: 0.9rem 1.2rem;
}

.ec-directory-head {
	background: #f8fafc;
	border-bottom: 1px solid #e5e7eb;
	font-size: 0.82rem;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.ec-directory-row {
	border-top: 1px solid #f1f5f9;
	color: inherit;
}

.ec-directory-row:hover {
	background: rgba(183, 28, 28, 0.05);
}

.ec-directory-code {
	font-family: "JetBrains Mono", monospace;
	font-weight: 700;
	color: var(--miele-red);
}

.ec-directory-link {
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--miele-red);
}

.ec-empty {
	margin: 0;
	padding: 1rem 1.2rem;
	color: var(--gray-500);
}

.ec-load-more-wrap {
	margin-top: 1.5rem;
	text-align: center;
}

.ec-load-more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.9rem 1.5rem;
	border-radius: 999px;
	border: 1px solid #d1d5db;
	background: var(--white);
	font-weight: 600;
	color: var(--miele-dark);
}

.ec-load-more:hover {
	border-color: rgba(183, 28, 28, 0.5);
	color: var(--miele-red);
}

.ec-safety-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 2rem;
	border-radius: 1.5rem;
	border: 1px solid #fecaca;
	background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
}

.ec-safety-head {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.ec-safety-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: var(--miele-red);
	color: var(--white);
	flex-shrink: 0;
}

.ec-safety-icon svg {
	width: 1.35rem;
	height: 1.35rem;
}

.ec-safety-card h2 {
	margin: 0;
	font-size: 1.7rem;
	color: var(--miele-dark);
}

.ec-safety-card p {
	margin: 0.55rem 0 0;
	color: var(--gray-600);
	max-width: 40rem;
}

.ec-safety-card .btn {
	padding: 0.9rem 1.4rem;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	flex-shrink: 0;
}

.ec-related-guides .guide-card {
	padding: 1.5rem;
	border-radius: 1rem;
}

.ec-related-guides .guide-body {
	padding: 0;
}

.ec-related-guides .guide-body p {
	margin-top: 0.5rem;
}

.ec-related-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	border-radius: 0.75rem;
	background: rgba(183, 28, 28, 0.1);
	color: var(--miele-red);
}

.ec-related-icon svg {
	width: 1.3rem;
	height: 1.3rem;
}

.ec-soft-cta-inner {
	text-align: center;
	max-width: 56rem;
	margin: 0 auto;
}

.ec-soft-cta-inner p {
	margin: 0;
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	color: rgba(255, 255, 255, 0.76);
	overflow-wrap: anywhere;
}

.ec-soft-cta-inner .btn {
	margin-top: 1.4rem;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 500;
	gap: 0.65rem;
	max-width: 100%;
	white-space: nowrap;
	line-height: 1;
}

.ec-severity-high {
	background-color: rgba(254, 242, 242, 0.8);
}
/* Section End: Error Codes Archive */

/* Section Start: Error Codes Appliance Archive */
.ec-appliance-main {
	background: #fff;
}

.ec-appliance-hero {
	position: relative;
	padding: 4rem 0;
	overflow: hidden;
}

.ec-appliance-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #fff 0%, var(--miele-warm) 55%, #f3f4f6 100%);
}

.ec-appliance-hero-orb {
	position: absolute;
	top: -6rem;
	right: -6rem;
	width: 24rem;
	height: 24rem;
	background: rgba(183, 28, 28, 0.05);
	border-radius: 999px;
	filter: blur(3rem);
}

.ec-appliance-hero-inner {
	position: relative;
}

.ec-appliance-hero-copy {
	max-width: 48rem;
}

.ec-appliance-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.9rem;
	background: #fff;
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--gray-600);
	border: 1px solid #f1f5f9;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
	margin-bottom: 1.5rem;
}

.ec-appliance-badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 0.4rem;
	background: var(--miele-red);
	color: #fff;
}

.ec-appliance-badge-icon svg {
	width: 0.8rem;
	height: 0.8rem;
}

.ec-appliance-hero h1 {
	margin: 1rem 0 1.25rem;
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 4.6vw, 3.9rem);
	line-height: 1.05;
	font-weight: 600;
	color: var(--miele-dark);
}

.ec-appliance-hero-desc {
	margin: 0;
	margin-top: 1.5rem;
	font-size: 1.0625rem;
	color: var(--gray-600);
	line-height: 1.65;
}

.ec-appliance-search {
	position: relative;
	margin-top: 2.5rem;
	max-width: 34rem;
}

.ec-appliance-search-icon {
	position: absolute;
	left: 0.9rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray-400);
}

.ec-appliance-search-icon svg {
	width: 1.1rem;
	height: 1.1rem;
}

.ec-appliance-search input {
	width: 100%;
	padding: 0.9rem 1rem 0.9rem 2.75rem;
	border-radius: 0.95rem;
	border: 1px solid #e5e7eb;
	background: #fff;
	font-size: 1rem;
	color: var(--miele-dark);
}

.ec-appliance-search input:focus {
	outline: none;
	border-color: rgba(183, 28, 28, 0.4);
	box-shadow: 0 0 0 4px rgba(183, 28, 28, 0.12);
}

.ec-appliance-search-hint {
	margin-top: 0.65rem;
	font-size: 0.875rem;
	color: var(--gray-500);
	padding-left: 0.25rem;
}

.ec-appliance-faqs {
	padding: 2rem 0;
	border-top: 1px solid #f3f4f6;
	border-bottom: 1px solid #f3f4f6;
	background: #fff;
}

.ec-appliance-faq-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.ec-appliance-faq-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	border-radius: 1.25rem;
	border: 1px solid #f3f4f6;
	background: rgba(249, 250, 251, 0.7);
}

.ec-appliance-faq-card h3 {
	margin: 0;
	font-size: 0.95rem;
	color: var(--miele-dark);
}

.ec-appliance-faq-card p {
	margin: 0.35rem 0 0;
	font-size: 0.9rem;
	color: var(--gray-500);
}

.ec-appliance-faq-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.75rem;
	flex-shrink: 0;
}

.ec-appliance-faq-icon svg {
	width: 1.1rem;
	height: 1.1rem;
}

.ec-appliance-faq-icon--green {
	background: #dcfce7;
	color: #15803d;
}

.ec-appliance-faq-icon--blue {
	background: #dbeafe;
	color: #2563eb;
}

.ec-appliance-faq-icon--red {
	background: #fee2e2;
	color: #b91c1c;
}

.ec-appliance-code-list {
	padding: 3rem 0;
	background: var(--miele-warm);
}

.ec-appliance-code-block + .ec-appliance-code-block {
	margin-top: 2.5rem;
}

.ec-appliance-code-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.ec-appliance-code-header h2 {
	margin: 0;
	font-size: 1.2rem;
	color: var(--miele-dark);
}

.ec-appliance-code-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 0.6rem;
	background: rgba(183, 28, 28, 0.1);
	color: var(--miele-red);
	font-size: 0.85rem;
	font-weight: 700;
}

.ec-appliance-code-icon svg {
	width: 1rem;
	height: 1rem;
}

.ec-appliance-code-icon--neutral {
	background: #e5e7eb;
	color: #6b7280;
}

.ec-code-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.ec-code-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "JetBrains Mono", monospace;
	font-weight: 700;
	border-radius: 0.85rem;
	border: 1px solid #e5e7eb;
	background: #fff;
	color: var(--miele-dark);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ec-code-chip:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(183, 28, 28, 0.18);
	border-color: rgba(183, 28, 28, 0.4);
	color: var(--miele-red);
}

.ec-code-chip--sm {
	padding: 0.4rem 0.75rem;
	font-size: 0.85rem;
}

.ec-code-chip--md {
	padding: 0.55rem 1rem;
	font-size: 1rem;
}

.ec-code-chip.is-active {
	background: var(--miele-red);
	color: #fff;
	border-color: var(--miele-red);
}

.ec-appliance-directory {
	padding: 3.5rem 0 4rem;
	background: #fff;
}

.ec-appliance-directory-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.ec-appliance-directory-head h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.9rem;
	color: var(--miele-dark);
}

.ec-appliance-directory-head p {
	margin: 0.35rem 0 0;
	color: var(--gray-500);
}

.ec-severity-legend {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.85rem;
	color: var(--gray-600);
}

.ec-severity-legend span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.ec-severity-legend .ec-severity-dot {
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 999px;
	background: #d1d5db;
}

.ec-severity-legend .ec-severity-dot--low { background: #22c55e; }
.ec-severity-legend .ec-severity-dot--medium { background: #f59e0b; }
.ec-severity-legend .ec-severity-dot--high { background: #ef4444; }

.ec-appliance-table {
	border-radius: 1.5rem;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	background: #fff;
}

.ec-appliance-table-head,
.ec-appliance-row {
	display: grid;
	grid-template-columns: 1fr 3fr 1.3fr 3fr 1fr;
	gap: 1.25rem;
	align-items: center;
	padding: 1rem 1.5rem;
}

.ec-appliance-table-head {
	background: #f8fafc;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b7280;
	border-bottom: 1px solid #e5e7eb;
}

.ec-appliance-row {
	border-top: 1px solid #f1f5f9;
	color: inherit;
	transition: background 0.2s ease;
}

.ec-appliance-row:hover {
	background: rgba(183, 28, 28, 0.05);
}

.ec-appliance-row.is-high {
	background: rgba(254, 242, 242, 0.6);
}

.ec-appliance-code {
	font-family: "JetBrains Mono", monospace;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--miele-red);
}

.ec-appliance-meaning {
	font-weight: 600;
	color: var(--miele-dark);
	overflow-wrap: anywhere;
}

.ec-appliance-symptom {
	font-size: 0.92rem;
	color: var(--gray-600);
	overflow-wrap: anywhere;
}

.ec-appliance-view {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--miele-red);
	text-align: right;
}

.ec-severity-badge--sm {
	padding: 0.25rem 0.55rem;
	font-size: 0.7rem;
}

.ec-severity-pulse {
	animation: pulse 1.6s infinite;
}

.ec-appliance-related {
	position: relative;
	padding: 4rem 0;
	background: var(--miele-dark);
	color: #fff;
	overflow: hidden;
}

.ec-appliance-related-bg {
	position: absolute;
	inset: 0;
	opacity: 0.25;
	background: radial-gradient(circle at 80% 20%, rgba(183, 28, 28, 0.6), transparent 55%);
}

.ec-appliance-related-inner {
	position: relative;
}

.ec-appliance-related-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.ec-appliance-related-header span {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--miele-red);
}

.ec-appliance-related-header h2 {
	margin: 0.5rem 0 0;
	font-family: var(--font-display);
	font-size: 2rem;
}

.ec-appliance-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.ec-appliance-related-card {
	padding: 2rem;
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ec-appliance-related-card-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.ec-appliance-related-card h3 {
	margin: 0;
	font-size: 1.2rem;
}

.ec-appliance-related-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 0.9rem;
	background: rgba(183, 28, 28, 0.2);
	color: var(--miele-red);
}

.ec-appliance-related-icon svg {
	width: 1.2rem;
	height: 1.2rem;
}

.ec-appliance-related-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.ec-appliance-related-card a {
	color: #d1d5db;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.2s ease;
}

.ec-appliance-related-chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.9rem;
	height: 0.9rem;
	color: #6b7280;
	flex-shrink: 0;
}

.ec-appliance-related-chevron svg {
	width: 0.9rem;
	height: 0.9rem;
}

.ec-appliance-related-card a:hover {
	color: #fff;
}

.ec-appliance-related-card p {
	margin: 0 0 1rem;
	color: #9ca3af;
}

.ec-appliance-related-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	color: var(--miele-red);
	font-weight: 600;
	text-decoration: none;
}

.ec-appliance-related-link:hover {
	color: #fff;
}

.ec-appliance-related-cta {
	margin-top: 2.5rem;
	text-align: center;
}

.ec-appliance-related-cta p {
	margin: 0 0 1rem;
	color: #d1d5db;
}
/* Section End: Error Codes Appliance Archive */

/* Section Start: Responsive Overrides */
@media (min-width: 64rem) {
	:root {
		--header-height: 5rem;
	}

	.container {
		padding: 0 2rem;
	}

	.site-content {
		padding-top: var(--header-height) !important;
	}

	.admin-bar .site-content {
		padding-top: var(--header-height) !important;
	}

	.section {
		padding: 8rem 0;
	}

	.section-hero {
		padding: 0;
	}

	/* Keep dedicated spacing for guide single hero on mobile. */
	.guide-single-page .section-hero.guide-single-hero {
		padding: 2.35rem 0 1.55rem;
	}

	.guide-single-hero {
		padding: 5rem 0;
	}

	.header-inner {
		height: 5rem;
	}

	.nav-desktop {
		display: flex;
	}

	.nav-toggle,
	.nav-mobile {
		display: none !important;
	}

	.section-header--split {
		flex-direction: row;
		align-items: flex-end;
	}

	.footer-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.footer-grid > div {
		min-width: 0;
	}

	.footer-inner {
		padding-top: 2rem;
		padding-bottom: 1.75rem;
	}

	.footer-bottom {
		margin-top: 2rem;
		padding-top: 1.25rem;
		gap: 1rem;
	}

	.error-codes-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}

	.error-codes {
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}

	.trust h2 {
		font-size: 2.25rem;
	}

	.pro-service-card {
		padding: 3rem;
	}

	.how-it-works .steps-grid {
		gap: 3rem;
	}

	.how-it-works .step-card {
		padding: 2.5rem;
	}

	.hero-text {
		font-size: 1.25rem;
	}

	.guides-hero {
		padding: 3rem 0 5rem;
	}

	.hero-title {
		font-size: 3.75rem;
		line-height: 1.1;
	}

	.safety-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}

	.safety-card {
		padding: 3rem;
	}

	.ec-main .section {
		padding: 5rem 0;
	}

	.guide-single-grid {
		flex-direction: row;
		align-items: flex-start;
		gap: 3rem;
	}

	.guide-single-sidebar {
		width: 20rem;
		flex-shrink: 0;
		position: sticky;
		top: 6rem;
	}

	.ec-hero {
		padding: 6rem 0;
	}

	.ec-appliance-hero {
		padding: 6rem 0;
	}

	.ec-appliance-hero h1 {
		font-size: clamp(3.25rem, 5vw, 3.75rem);
	}

	.ec-appliance-hero-copy > p {
		font-size: 1.25rem;
	}

	.guides-main::before,
	.ec-main::before {
		top: -5rem;
		height: 5rem;
	}
}

@media (max-width: 39.98rem) {
	.site-header .brand-name {
		display: none;
	}
}

@media (min-width: 40rem) and (max-width: 63.98rem) {
	.hero-title {
		font-size: 3rem;
		line-height: 1.1;
	}
}

@media (min-width: 48rem) {
	.trust-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.pro-service-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.footer-bottom {
		flex-direction: row;
		text-align: left;
	}
}

@media (max-width: 63.98rem) {
	.error-codes-grid,
	.safety-grid {
		grid-template-columns: 1fr;
	}

	.safety-left {
		order: 2;
	}

	.safety-right {
		order: 1;
	}

	.ec-steps-grid,
	.ec-appliance-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ec-popular-item {
		grid-template-columns: 4.5rem 1fr auto auto;
	}

	.ec-popular-term {
		display: none;
	}

	.ec-sort-label {
		margin-left: 0;
	}

	.ec-filter-bar {
		gap: 0.6rem;
	}

	.ec-sort-buttons {
		width: 100%;
	}

	.ec-directory-head {
		display: none;
	}

	.ec-directory-row {
		grid-template-columns: 1fr;
		gap: 0.3rem;
	}

	.ec-appliance-faq-grid,
	.ec-appliance-related-grid {
		grid-template-columns: 1fr;
	}

	.ec-appliance-directory-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.ec-severity-legend {
		flex-wrap: wrap;
	}

	.ec-appliance-table-head {
		display: none;
	}

	.ec-appliance-row {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.ec-appliance-view {
		text-align: left;
	}
}

@media (min-width: 48rem) and (max-width: 63.98rem) {
	.footer-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.footer-brand {
		grid-column: span 2;
	}

	.ec-hero {
		padding-top: 3rem;
		padding-bottom: 4rem;
	}

	.ec-search-wrap {
		grid-template-columns: auto 1fr;
	}

	.ec-search .btn {
		grid-column: 1 / -1;
		width: 100%;
	}

	.ec-safety-card {
		flex-direction: column;
		align-items: flex-start;
	}
}
/* Section End: Responsive Overrides */

@media (max-width: 47.98rem) {
	.ec-steps-grid {
		grid-template-columns: 1fr;
	}

	.ec-appliance-grid {
		grid-template-columns: 1fr;
	}

	.ec-step-card {
		min-width: 0;
		padding: 1rem;
	}

	.ec-appliance-card {
		min-width: 0;
	}

	.ec-step-card h3,
	.ec-step-card p {
		overflow-wrap: anywhere;
	}

	.ec-appliance-card h3,
	.ec-appliance-card p {
		overflow-wrap: anywhere;
	}

	.ec-directory .container {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.ec-filter-bar {
		padding: 0.85rem;
		gap: 0.55rem;
		border-radius: 0.85rem;
	}

	.ec-filter-label,
	.ec-sort-label {
		width: 100%;
		font-size: 0.78rem;
		line-height: 1.2;
	}

	.ec-filter-select {
		width: 100%;
		min-height: 2.5rem;
		font-size: 0.82rem;
	}

	.ec-sort-buttons {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
		gap: 0.4rem;
	}

	.ec-sort-btn {
		width: 100%;
		min-height: 2.35rem;
		padding: 0.45rem 0.35rem;
		font-size: 0.74rem;
		line-height: 1.2;
	}

	.ec-directory-table {
		border-radius: 0.85rem;
	}

	.ec-directory-row {
		padding: 0.85rem 0.9rem;
		gap: 0.45rem;
	}

	.ec-directory-row > span {
		min-width: 0;
		overflow-wrap: anywhere;
	}

	.ec-directory-code {
		font-size: 1.05rem;
		line-height: 1.2;
	}

	.ec-directory-row > span:nth-child(2) {
		font-size: 0.78rem;
		color: var(--gray-500);
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.02em;
	}

	.ec-directory-row > span:nth-child(3) {
		font-size: 0.9rem;
		line-height: 1.45;
		color: var(--gray-700);
	}

	.ec-directory-row > span:nth-child(4),
	.ec-directory-link {
		margin-top: 0.2rem;
	}

	.ec-safety-card {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.2rem;
		gap: 1rem;
		border-radius: 1rem;
	}

	.ec-safety-head {
		align-items: flex-start;
	}

	.ec-safety-card h2 {
		font-size: 1.25rem;
		line-height: 1.3;
	}

	.ec-safety-card p {
		margin-top: 0.5rem;
		font-size: 0.92rem;
		line-height: 1.5;
	}

	.ec-safety-card .btn {
		width: 100%;
		min-height: 2.85rem;
		white-space: normal;
		padding: 0.78rem 1rem;
		font-size: 0.92rem;
	}

	.ec-soft-cta {
		padding-top: 2.8rem;
		padding-bottom: 2.8rem;
	}

	.ec-soft-cta-inner p {
		font-size: 1.08rem;
		line-height: 1.5;
	}

	.ec-soft-cta-inner .btn {
		width: 100%;
		min-height: 2.9rem;
		padding: 0.78rem 1rem;
		font-size: 0.92rem;
	}

	.guide-single-main {
		padding-top: 0rem;
	}

	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .site-content {
		/*padding-top: calc(4rem + 46px);*/
	}

	.container {
		padding: 0 1.5rem;
	}

	.header-inner {
		height: 3.875rem;
	}

	.brand {
		gap: 0.625rem;
	}

	/* On phone widths keep header compact to avoid overflow. */
	.site-header .brand-name {
		display: none;
	}

	.nav-toggle {
		width: 2.5rem;
		height: 2.5rem;
	}

	.nav-toggle svg {
		width: 1.375rem;
		height: 1.375rem;
	}

	.guides-main .container,
	.guides-taxonomy .container {
		padding: 0 1rem;
	}

	.guide-single-page .container {
		padding: 0 1.5rem;
	}

	.admin-bar .guide-reading-progress {
		top: calc(4rem + 46px);
	}

	.section {
		padding: 4rem 0;
	}

	.section-hero {
		padding: 0;
	}

	.hero-text {
		font-size: 1rem;
	}

	.hero-shell {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}

	.hero-actions {
		margin-top: 2rem;
		gap: 0.75rem;
	}

	.hero-btn {
		padding: 0.9rem 1.25rem;
	}

	.nav-mobile-inner {
		padding: 0.9rem 1.5rem 1.2rem;
	}

	.footer-inner {
		padding-top: 3rem;
		padding-bottom: 2rem;
	}

	.footer-grid {
		gap: 1.5rem 1.25rem;
	}

	.footer-title {
		margin-bottom: 0.75rem;
	}

	.footer-links {
		gap: 0.6rem;
	}

	.footer-bottom {
		margin-top: 2rem;
		padding-top: 1.25rem;
		align-items: flex-start;
		gap: 0.35rem;
		text-align: left;
	}

	.footer-note {
		font-size: 0.8rem;
		color: var(--gray-500);
	}

	.footer-brand {
		grid-column: span 2;
	}
}

/* Guide Single: final layout guards (keep after all responsive overrides). */
.guide-single-page .section.guide-single-main {
	padding-top: 3rem;
}

.guide-single-page .guide-single-hero {
	padding: 3rem 0;
}

.guide-single-page .guide-single-hero-shell {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

@media (min-width: 64rem) {
	.guide-single-page .section.guide-single-main {
		padding-top: 3rem;
		padding-bottom: 4.5rem;
	}

	.guide-single-page .guide-single-hero.section.section-hero.grain {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.guide-single-page .guide-single-hero-shell {
		padding-top: 0.35rem;
		padding-bottom: 1.25rem;
	}
}

@media (max-width: 47.98rem) {
	.guide-single-page .section.guide-single-main {
		padding-top: 2rem;
		padding-bottom: 3rem;
	}

	.guide-single-page .section-hero.guide-single-hero {
		padding: 2.35rem 0 1.55rem;
	}

	.guide-single-page .guide-single-hero-shell {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

/* Section Start: Error Code Single */
.error-code-single-page {
	background: var(--white);
}

/* Progress Bar */
.ec-reading-progress {
	position: fixed;
	top: 4rem;
	left: 0;
	right: 0;
	height: 0.25rem;
	background: rgba(229, 231, 235, 0.7);
	z-index: 45;
}

.admin-bar .ec-reading-progress {
	top: calc(4rem + 32px);
}

.ec-reading-progress-bar {
	height: 100%;
	width: 0;
	background: var(--miele-red);
	transition: width 0.12s linear;
}

/* Hero Layout */
.ec-hero {
	position: relative;
	padding: 3rem 0;
	overflow: hidden;
	background: var(--miele-warm);
}

.ec-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #ffffff 0%, var(--miele-warm) 48%, var(--gray-100) 100%);
}

.ec-hero-orb {
	position: absolute;
	width: 22rem;
	height: 22rem;
	border-radius: 50%;
	background: rgba(183, 28, 28, 0.06);
	filter: blur(42px);
}

.ec-hero-orb--right {
	top: -6rem;
	right: -6rem;
}

.ec-hero-orb--left {
	bottom: -7rem;
	left: -6rem;
}

.ec-hero-shell {
	position: relative;
}

.ec-hero-grid {
	display: flex;
	gap: 2.5rem;
	align-items: flex-start;
	justify-content: space-between;
}

.ec-hero-main {
	flex: 1;
	max-width: 44rem;
}

.ec-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

/* Hero Badges */
.ec-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 600;
	border: 1px solid transparent;
}

.ec-badge--appliance {
	background: var(--white);
	border-color: var(--gray-200);
	color: var(--gray-600);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.ec-badge--severity {
	background: #fef3c7;
	color: #92400e;
	border-color: #fde68a;
}

.ec-badge--severity-low {
	background: #dcfce7;
	color: #166534;
	border-color: #bbf7d0;
}

.ec-badge--severity-medium {
	background: #fef3c7;
	color: #92400e;
	border-color: #fde68a;
}

.ec-badge--severity-high {
	background: #fee2e2;
	color: #991b1b;
	border-color: #fecaca;
}

.ec-badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: currentColor;
}

.ec-badge--severity-medium .ec-badge-dot,
.ec-badge--severity-high .ec-badge-dot {
	animation: ec-pulse 2s infinite;
}

@keyframes ec-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(183, 28, 28, 0.35);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(183, 28, 28, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(183, 28, 28, 0);
	}
}

.ec-hero-code {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.ec-hero-code-value {
	font-family: 'DM Sans', 'Menlo', 'Consolas', monospace;
	font-size: clamp(3rem, 6vw, 4.5rem);
	font-weight: 700;
	color: var(--miele-red);
}

.ec-hero-code-sep {
	font-size: 2rem;
	color: var(--gray-300);
	font-weight: 300;
}

.ec-hero-code-label {
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--gray-500);
}

.ec-hero-title {
	margin-top: 1rem;
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 2.6vw, 2.5rem);
	color: var(--miele-dark);
}

.ec-hero-description {
	margin-top: 1rem;
	font-size: 1.1rem;
	line-height: 1.65;
	color: var(--gray-600);
}

/* Hero Stats */
.ec-hero-stats {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.ec-hero-stat {
	background: var(--white);
	border-radius: 1rem;
	border: 1px solid var(--gray-100);
	padding: 1rem;
	text-align: center;
}

.ec-hero-stat-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--miele-dark);
}

.ec-hero-stat-label {
	margin-top: 0.25rem;
	font-size: 0.75rem;
	color: var(--gray-500);
}

/* Quick Assessment */
.ec-hero-assessment {
	width: 20rem;
	flex-shrink: 0;
}

.ec-assessment-card {
	background: var(--white);
	border-radius: 1.5rem;
	border: 1px solid var(--gray-100);
	box-shadow: var(--shadow-card);
	overflow: hidden;
}

.ec-assessment-head {
	background: var(--miele-dark);
	color: var(--white);
	padding: 1.5rem;
}

.ec-assessment-head h3 {
	margin: 0;
	font-size: 1.1rem;
}

.ec-assessment-head p {
	margin-top: 0.35rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.85rem;
}

.ec-assessment-body {
	padding: 1.25rem;
	display: grid;
	gap: 0.9rem;
}

.ec-assessment-item {
	border-radius: 0.9rem;
	padding: 0.9rem 1rem;
	border: 1px solid transparent;
}

.ec-assessment-item--amber {
	background: #fffbeb;
	border-color: #fde68a;
	color: #92400e;
}

.ec-assessment-item--blue {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: #1e40af;
}

.ec-assessment-item--red {
	background: #fef2f2;
	border-color: #fecaca;
	color: #991b1b;
}

.ec-assessment-question {
	font-size: 0.85rem;
	font-weight: 600;
}

.ec-assessment-answer {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: inherit;
}

/* Main Content Layout */
.ec-content {
	background: var(--white);
	padding: 3rem 0 4rem;
}

.ec-content-grid {
	display: flex;
	gap: 3rem;
}

.ec-content-main {
	flex: 1;
	max-width: 46rem;
}

.ec-section {
	margin-bottom: 3rem;
}

.ec-section:last-child {
	margin-bottom: 0;
}

/* Section Headings */
.ec-section-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.ec-section-head h2 {
	margin: 0;
	font-size: 1.75rem;
	color: var(--miele-dark);
}

.ec-section-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.ec-section-icon svg {
	width: 1.2rem;
	height: 1.2rem;
}

.ec-section-head--purple .ec-section-icon {
	background: #ede9fe;
	color: #7c3aed;
}

.ec-section-head--orange .ec-section-icon {
	background: #ffedd5;
	color: #c2410c;
}

.ec-section-head--green .ec-section-icon {
	background: #dcfce7;
	color: #15803d;
}

.ec-section-head--red .ec-section-icon {
	background: #fee2e2;
	color: #b91c1c;
}

.ec-section-head--blue .ec-section-icon {
	background: #dbeafe;
	color: #1d4ed8;
}

/* Symptoms */
.ec-symptoms-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.ec-symptom-card {
	display: flex;
	gap: 0.75rem;
	background: var(--gray-50);
	border-radius: 0.9rem;
	padding: 1rem;
}

.ec-symptom-check {
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 999px;
	background: #ede9fe;
	color: #7c3aed;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.ec-symptom-check svg {
	width: 0.9rem;
	height: 0.9rem;
}

.ec-symptom-title {
	font-weight: 600;
	color: var(--miele-dark);
}

.ec-symptom-desc {
	margin-top: 0.25rem;
	font-size: 0.9rem;
	color: var(--gray-500);
}

/* Causes */
.ec-causes-list {
	display: grid;
	gap: 1rem;
}

.ec-cause-card {
	display: flex;
	gap: 1rem;
	padding: 1.2rem;
	background: var(--white);
	border-radius: 1rem;
	border: 1px solid var(--gray-200);
}

.ec-cause-index {
	width: 2rem;
	height: 2rem;
	border-radius: 0.6rem;
	background: #ffedd5;
	color: #ea580c;
	font-weight: 700;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ec-cause-card h3 {
	margin: 0;
	font-size: 1rem;
}

.ec-cause-card p {
	margin-top: 0.4rem;
	color: var(--gray-600);
}

.ec-cause-tag {
	display: inline-block;
	margin-top: 0.6rem;
	padding: 0.2rem 0.55rem;
	border-radius: 0.4rem;
	font-size: 0.75rem;
	font-weight: 600;
}

.ec-cause-tag.is-pro {
	background: #fee2e2;
	color: #b91c1c;
}

.ec-cause-tag.is-diy {
	background: #dcfce7;
	color: #15803d;
}

/* Safe Checks */
.ec-checks-note {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 1rem;
	padding: 1rem 1.2rem;
	font-size: 0.9rem;
	color: #166534;
	margin-bottom: 1.5rem;
}

.ec-checks-note strong {
	font-weight: 700;
}

.ec-checks-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.ec-check-card {
	display: flex;
	gap: 1rem;
	background: var(--white);
	border-radius: 1rem;
	border: 1px solid var(--gray-200);
	padding: 1.2rem;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ec-check-card:hover {
	background: rgba(34, 197, 94, 0.08);
	border-color: rgba(34, 197, 94, 0.2);
}

.ec-check-step {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 999px;
	background: #16a34a;
	color: var(--white);
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ec-check-card h3 {
	margin: 0;
	font-size: 1rem;
}

.ec-check-card p {
	margin-top: 0.4rem;
	color: var(--gray-600);
}

.ec-check-tip {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: #16a34a;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 500;
}

.ec-check-card .ec-check-tip {
	color: #16a34a;
}

.ec-check-tip-icon {
	width: 1rem;
	height: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ec-check-tip-icon svg {
	width: 1rem;
	height: 1rem;
}

.ec-check-tools {
	display: inline-block;
	margin-top: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #1d4ed8;
	background: #dbeafe;
	padding: 0.2rem 0.5rem;
	border-radius: 0.35rem;
}

/* Professional Indicators */
.ec-pro-card {
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 1rem;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.ec-pro-card h3 {
	margin: 0 0 0.75rem;
	color: #991b1b;
	font-size: 1rem;
	font-weight: 600;
}

.ec-pro-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.ec-pro-card li {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	color: #7f1d1d;
	font-size: 0.95rem;
	line-height: 1.55;
}

.ec-pro-text {
	display: inline-block;
	font-weight: 500;
}

.ec-pro-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: #dc2626;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.ec-pro-icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

.ec-pro-cta {
	background: var(--miele-dark);
	border-radius: 1rem;
	padding: 1.5rem;
	color: var(--white);
}

.ec-pro-cta .btn {
	background: var(--white);
	color: var(--miele-dark);
	border: none;
	border-radius: 0.9rem;
	padding: 0.85rem 1.25rem;
	font-weight: 600;
}

.ec-pro-cta .btn:hover {
	background: var(--gray-100);
	color: var(--miele-dark);
}

.ec-pro-cta h3 {
	margin: 0 0 0.4rem;
	color: var(--white);
}

.ec-pro-cta p {
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 1rem;
}

/* Related Codes */
.ec-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.ec-related-card {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	border-radius: 1rem;
	border: 1px solid var(--gray-200);
	background: var(--white);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.ec-related-card:hover {
	border-color: rgba(183, 28, 28, 0.4);
	transform: translateY(-1px);
}

.ec-related-code {
	font-family: 'DM Sans', 'Menlo', 'Consolas', monospace;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--miele-red);
}

.ec-related-title {
	font-weight: 600;
	color: var(--miele-dark);
}

.ec-related-desc {
	margin-top: 0.2rem;
	font-size: 0.85rem;
	color: var(--gray-500);
}

/* Sidebar */
.ec-sidebar {
	width: 18rem;
	flex-shrink: 0;
	position: sticky;
	top: 6rem;
	align-self: flex-start;
}

.ec-sidebar-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 1.25rem;
	padding: 1.5rem;
	margin-bottom: 1.25rem;
}

.ec-sidebar-card:last-child {
	margin-bottom: 0;
}

.ec-sidebar-card h3 {
	margin: 0 0 1rem;
	font-size: 1rem;
	color: var(--miele-dark);
}

.ec-sidebar-card--toc ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.35rem;
}

.ec-sidebar-card--toc a {
	display: block;
	padding: 0.4rem 0.6rem;
	border-radius: 0.6rem;
	font-size: 0.85rem;
	color: var(--gray-600);
	transition: color 0.2s ease, background-color 0.2s ease;
}

.ec-sidebar-card--toc a:hover {
	background: rgba(183, 28, 28, 0.06);
	color: var(--miele-red);
}

.ec-sidebar-card--toc li.is-sub a {
	padding-left: 1rem;
	font-size: 0.8rem;
}

.ec-sidebar-card--facts {
	background: var(--gray-50);
	border-color: transparent;
}

.ec-sidebar-card--facts dl {
	margin: 0;
	display: grid;
	grid-template-columns: 1fr auto;
	column-gap: 0.75rem;
	gap: 0.75rem;
	font-size: 0.85rem;
}

.ec-sidebar-card--facts dt {
	margin: 0;
	color: var(--gray-500);
}

.ec-sidebar-card--facts dd {
	margin: 0;
	font-weight: 600;
	text-align: right;
	color: var(--miele-dark);
}

.ec-sidebar-card--facts dd.is-code {
	font-family: 'DM Sans', 'Menlo', 'Consolas', monospace;
	color: var(--miele-red);
}

.ec-sidebar-card--facts dd.is-severity-low {
	color: #166534;
}

.ec-sidebar-card--facts dd.is-severity-medium {
	color: #92400e;
}

.ec-sidebar-card--facts dd.is-severity-high {
	color: #991b1b;
}

.ec-sidebar-card--help {
	background: linear-gradient(135deg, var(--miele-red), var(--miele-accent));
	color: var(--white);
}

.ec-sidebar-card--help h3,
.ec-sidebar-card--help p {
	color: var(--white);
}

.ec-help-btn {
	display: block;
	width: 100%;
	padding: 0.8rem 1rem;
	margin-top: 1rem;
	background: var(--white);
	color: var(--miele-dark);
	border-radius: 0.75rem;
	text-align: center;
	font-weight: 600;
	transition: background-color 0.2s ease;
}

.ec-help-btn:hover {
	background: var(--gray-100);
}

/* More Codes */
.ec-more {
	background: var(--gray-50);
	border-top: 1px solid var(--gray-200);
	padding: 3rem 0 3.5rem;
}

.ec-more-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.ec-more-head h2 {
	margin: 0;
	font-size: 1.75rem;
}

.ec-more-link {
	color: var(--miele-red);
	font-weight: 600;
}

.ec-code-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.ec-code-chip {
	padding: 0.5rem 1rem;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 999px;
	font-family: 'DM Sans', 'Menlo', 'Consolas', monospace;
	font-weight: 600;
	color: var(--miele-dark);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.ec-code-chip:hover {
	border-color: rgba(183, 28, 28, 0.5);
	color: var(--miele-red);
}

/* Responsive Tweaks */
@media (max-width: 991px) {
	.ec-hero-grid {
		flex-direction: column;
	}

	.ec-hero-assessment {
		width: 100%;
	}

	.ec-hero-stats {
		grid-template-columns: 1fr;
	}

	.ec-content-grid {
		flex-direction: column;
	}

	.ec-sidebar {
		width: 100%;
		position: static;
		top: auto;
	}
}

@media (max-width: 767px) {
	.ec-hero {
		padding: 2.5rem 0;
	}

	.ec-hero-badges {
		gap: 0.5rem;
		margin-bottom: 1rem;
	}

	.ec-badge {
		padding: 0.4rem 0.85rem;
		font-size: 0.8rem;
	}

	.ec-hero-code {
		gap: 0.5rem;
	}

	.ec-hero-code-value {
		font-size: clamp(2.6rem, 10vw, 3.2rem);
	}

	.ec-hero-code-label {
		font-size: 1rem;
	}

	.ec-hero-title {
		font-size: clamp(1.7rem, 6vw, 2.2rem);
	}

	.ec-hero-description {
		font-size: 1rem;
	}

	.ec-symptoms-grid {
		grid-template-columns: 1fr;
	}

	.ec-related-grid {
		grid-template-columns: 1fr;
	}

	.ec-content {
		padding: 2.5rem 0 3rem;
	}

	.ec-content-grid {
		gap: 2rem;
	}

	.ec-section-head {
		gap: 0.6rem;
	}

	.ec-section-head h2 {
		font-size: 1.45rem;
	}

	.ec-section-icon {
		width: 2.1rem;
		height: 2.1rem;
		border-radius: 0.65rem;
	}

	.ec-symptom-card,
	.ec-cause-card,
	.ec-check-card,
	.ec-related-card {
		padding: 0.95rem;
	}

	.ec-check-step {
		width: 2.1rem;
		height: 2.1rem;
		font-size: 0.9rem;
	}

	.ec-pro-card {
		padding: 1.25rem;
	}

	.ec-pro-cta {
		padding: 1.25rem;
	}

	.ec-sidebar-card {
		padding: 1.25rem;
	}

	.ec-more-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.ec-more {
		padding: 2.5rem 0 3rem;
	}
}

@media (min-width: 64rem) {
	.ec-hero {
		padding: 4rem 0;
	}
}
/* Section End: Error Code Single */
