:root {
  --bg: #f4fffd;
  --bg-strong: #ebfffb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: #f1fffb;
  --line: #d3f1eb;
  --line-strong: #b7e6df;
  --text: #183c39;
  --text-soft: #5f817d;
  --accent: #57dacd;
  --accent-strong: #1abfae;
  --accent-deep: #0f7f74;
  --accent-soft: #cffff7;
  --shadow-xl: 0 28px 70px rgba(31, 137, 126, 0.16);
  --shadow-lg: 0 20px 44px rgba(31, 137, 126, 0.14);
  --shadow-md: 0 12px 28px rgba(31, 137, 126, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1380px;
}

body[data-theme="dark"] {
  --bg: #0f1e24;
  --bg-strong: #12262d;
  --surface: rgba(20, 34, 41, 0.92);
  --surface-strong: #172a31;
  --surface-soft: #1b3138;
  --line: rgba(150, 214, 207, 0.14);
  --line-strong: rgba(150, 214, 207, 0.22);
  --text: #ecfffb;
  --text-soft: #8fb0aa;
  --accent: #57dacd;
  --accent-strong: #1abfae;
  --accent-deep: #b4fff6;
  --accent-soft: rgba(87, 218, 205, 0.12);
  --shadow-xl: 0 28px 70px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 20px 44px rgba(0, 0, 0, 0.26);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(87, 218, 205, 0.3), transparent 20%),
    radial-gradient(circle at 86% 26%, rgba(87, 218, 205, 0.16), transparent 18%),
    radial-gradient(circle at 72% 74%, rgba(26, 191, 174, 0.12), transparent 18%),
    linear-gradient(180deg, #fafffe 0%, #f1fffb 100%);
}

body[data-theme="dark"] {
  background:
    radial-gradient(circle at 8% 12%, rgba(87, 218, 205, 0.16), transparent 20%),
    radial-gradient(circle at 86% 26%, rgba(87, 218, 205, 0.1), transparent 18%),
    radial-gradient(circle at 72% 74%, rgba(26, 191, 174, 0.08), transparent 18%),
    linear-gradient(180deg, #102027 0%, #0a1519 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.site-shell {
  position: relative;
  overflow: clip;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  top: 4rem;
  left: -8rem;
  background: rgba(87, 218, 205, 0.22);
}

.site-shell::after {
  right: -10rem;
  bottom: 3rem;
  background: rgba(26, 191, 174, 0.14);
}

.site-header,
.hero-layout,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(20px);
}

.hero-chip-grid,
.fault-pin-grid {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(145deg, var(--accent-strong), var(--accent));
  box-shadow: 0 14px 28px rgba(26, 191, 174, 0.26);
}

.brand-copy {
  display: grid;
  gap: 0.18rem;
}

.brand-copy strong {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 20px rgba(26, 191, 174, 0.08);
}

.site-nav a {
  color: var(--text-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.84rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-call,
.btn,
.fault-chip,
.price-meta a,
.sticky-call {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.header-call {
  padding: 0.88rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(26, 191, 174, 0.08);
}

.header-call:hover,
.btn:hover,
.fault-chip:hover,
.price-meta a:hover,
.sticky-call:hover {
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(145deg, var(--accent-strong), var(--accent));
  box-shadow: 0 16px 34px rgba(26, 191, 174, 0.24);
}

.btn-secondary {
  color: var(--accent-deep);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
}

.btn-dark {
  color: #ffffff;
  background: linear-gradient(145deg, #163f3c, #245956);
  box-shadow: 0 16px 32px rgba(19, 63, 60, 0.24);
}

.btn-full {
  width: 100%;
}

.header-btn {
  min-height: 3rem;
  padding-inline: 1.15rem;
}

.panel-card,
.price-card,
.benefit-card,
.stat-tile,
.extra-card,
.fault-focus {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 255, 252, 0.96));
  box-shadow: var(--shadow-lg);
}

body[data-theme="dark"] .panel-card,
body[data-theme="dark"] .price-card,
body[data-theme="dark"] .benefit-card,
body[data-theme="dark"] .stat-tile,
body[data-theme="dark"] .extra-card,
body[data-theme="dark"] .fault-focus {
  border-color: rgba(150, 214, 207, 0.1);
  background: linear-gradient(180deg, rgba(20, 34, 41, 0.98), rgba(17, 29, 36, 0.98));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 19rem) minmax(0, 1fr) minmax(17rem, 20rem);
  gap: 1.4rem;
  align-items: start;
  margin-top: 0.75rem;
}

.steps-card,
.contact-card {
  position: sticky;
  top: 6.25rem;
}

.steps-card,
.contact-card,
.hero-main,
.lead-card,
.faults-visual,
.expertise-card {
  padding: 1.6rem;
}

.section {
  margin-top: 2rem;
}

.section-kicker,
.offer-label,
.fault-focus-kicker,
.footer-copy {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
}

.section-kicker::before {
  content: "";
  width: 2.3rem;
  height: 1px;
  background: currentColor;
}

.section-head,
.hero-copy,
.lead-copy,
.company-copy {
  display: grid;
  gap: 1rem;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.section-head.narrow {
  max-width: 52rem;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(20rem, 0.84fr);
  gap: clamp(1.2rem, 2vw, 2rem);
  align-items: start;
}

.hero-main--text-only {
  grid-template-columns: minmax(0, 1fr);
}

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

.hero-main--text-only .hero-copy h1 {
  max-width: 13.6ch;
}

.hero-copy h1,
.section-head h2,
.benefit-card h3,
.faults-copy h2,
.expertise-copy h2,
.company-copy h2,
.lead-copy h2,
.steps-card h2,
.promo-banner h2 {
  margin: 0;
  line-height: 0.94;
}

.hero-copy h1,
.section-head h2,
.faults-copy h2,
.lead-copy h2 {
  font-size: clamp(2.45rem, 4.45vw, 4.45rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 7.4ch;
  line-height: 0.92;
  text-wrap: balance;
}

.hero-copy h1 > span {
  display: block;
}

.hero-title-accent {
  display: inline;
  color: var(--accent);
  text-shadow: 0 10px 26px rgba(26, 191, 174, 0.16);
}

body[data-theme="dark"] .hero-title-accent {
  color: #7ff4e8;
  text-shadow: 0 12px 30px rgba(41, 226, 208, 0.18);
}

.hero-main--text-only .hero-lead {
  max-width: 46rem;
  font-size: 1.04rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.steps-card h2,
.benefit-card h3,
.expertise-copy h2,
.company-copy h2,
.promo-banner h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-lead,
.section-head p,
.steps-list p,
.price-card p,
.benefit-card p,
.fault-focus p,
.expertise-list li,
.company-copy p,
.extra-card p,
.lead-copy p,
.form-note,
.site-footer p,
.contact-points li,
.promo-banner p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-badges,
.lead-points,
.brand-pills,
.fault-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badges span,
.lead-points span,
.brand-pills span {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 18px rgba(26, 191, 174, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: 100%;
}

.hero-glow {
  position: absolute;
  inset: auto auto 1rem 0.5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: rgba(87, 218, 205, 0.32);
  filter: blur(18px);
}

.hero-machine-card {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: min(100%, 31rem);
  min-height: 30rem;
  padding: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.9), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.72), transparent 20%),
    linear-gradient(145deg, #d9fff7 0%, #c2f8f0 45%, #81e7d8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body[data-theme="dark"] .hero-machine-card,
body[data-theme="dark"] .price-visual,
body[data-theme="dark"] .expertise-photo,
body[data-theme="dark"] .faults-visual,
body[data-theme="dark"] .lead-card {
  border-color: rgba(150, 214, 207, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body[data-theme="dark"] .hero-machine-card {
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(145deg, #15363d 0%, #154247 48%, #0f6a67 100%);
}

.hero-question {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  margin: 0;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(15, 127, 116, 0.78);
}

body[data-theme="dark"] .hero-question {
  color: #07231f;
  background: rgba(180, 255, 246, 0.92);
}

.hero-machine {
  position: relative;
  z-index: 1;
  width: min(100%, 25rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(23, 96, 90, 0.24));
  animation: drift 4.8s ease-in-out infinite;
}

.visual-chip,
.fault-pin,
.extra-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--accent-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 24px rgba(25, 111, 101, 0.12);
}

button.visual-chip,
button.fault-pin,
button.extra-pin {
  border: 1px solid transparent;
  cursor: pointer;
}

button.visual-chip:hover,
button.visual-chip:focus-visible,
button.fault-pin:hover,
button.fault-pin:focus-visible,
button.extra-pin:hover,
button.extra-pin:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(26, 191, 174, 0.24);
  outline: none;
  box-shadow: 0 18px 30px rgba(25, 111, 101, 0.16);
}

body[data-theme="dark"] .visual-chip,
body[data-theme="dark"] .fault-pin,
body[data-theme="dark"] .extra-pin {
  color: #dbfffa;
  background: rgba(14, 33, 39, 0.9);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}

.visual-chip::before,
.fault-pin::before,
.extra-pin::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent-strong);
}

.chip-top-left {
  top: 4.5rem;
  left: 1rem;
}

.chip-top-right {
  top: 8.2rem;
  right: 1rem;
}

.chip-bottom-left {
  left: 1.5rem;
  bottom: 5.1rem;
}

.chip-bottom-right {
  right: 1.2rem;
  bottom: 8.2rem;
}

.offer-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(12rem, 0.9fr) minmax(0, 1.4fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-radius: 1.6rem;
  background: linear-gradient(145deg, #173a37, #204e49);
  box-shadow: 0 20px 40px rgba(18, 58, 54, 0.24);
}

.offer-bar p,
.offer-bar small,
.offer-bar .offer-label {
  color: rgba(255, 255, 255, 0.82);
}

.offer-clock {
  display: grid;
  gap: 0.2rem;
}

.offer-clock strong {
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.steps-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.step-index,
.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  background: linear-gradient(145deg, var(--accent-strong), var(--accent));
  box-shadow: 0 10px 18px rgba(26, 191, 174, 0.24);
}

.steps-list strong {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 1rem;
}

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

.contact-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
}

.contact-logo {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  background: linear-gradient(145deg, var(--accent-strong), var(--accent));
}

.contact-brand strong {
  display: block;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.contact-brand span,
.contact-title {
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.contact-phone {
  display: inline-block;
  color: var(--accent-deep);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.contact-phone.large {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.contact-points {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 1.5rem;
}

.contact-points li::before,
.expertise-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent-strong);
}

.contact-mini-nav {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.contact-mini-nav span {
  width: 2rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--line-strong);
}

.prices,
.benefits,
.faults,
.company,
.lead-section {
  display: grid;
  gap: 1.4rem;
}

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

.price-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.price-visual {
  display: grid;
  align-content: end;
  min-height: 8.2rem;
  padding: 1rem;
  border-radius: 1.6rem;
  color: var(--accent-deep);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.94), transparent 22%),
    linear-gradient(145deg, #ddfff7 0%, #b6f4eb 100%);
}

body[data-theme="dark"] .price-visual {
  color: #dbfffa;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(145deg, #16363c 0%, #18504e 100%);
}

.price-visual span {
  color: rgba(15, 127, 116, 0.5);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
}

.price-visual strong {
  font-size: 1.3rem;
  line-height: 1;
}

.price-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.price-card ul,
.expertise-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.price-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.price-meta strong,
.promo-side strong {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-meta a {
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-deep);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.8);
}

.promo-banner {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 26%, rgba(255, 255, 255, 0.6), transparent 18%),
    linear-gradient(145deg, #73e5d9 0%, #24c8b7 100%);
  box-shadow: var(--shadow-xl);
}

body[data-theme="dark"] .promo-banner {
  background:
    radial-gradient(circle at 16% 26%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(145deg, #194b4e 0%, #0e6d6b 100%);
}

.promo-banner .section-kicker,
.promo-banner h2,
.promo-banner p,
.promo-side strong {
  color: #0d4d46;
}

body[data-theme="dark"] .promo-banner .section-kicker,
body[data-theme="dark"] .promo-banner h2,
body[data-theme="dark"] .promo-banner p,
body[data-theme="dark"] .promo-side strong {
  color: #ecfffb;
}

.promo-side {
  display: grid;
  gap: 0.8rem;
  justify-items: end;
}

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

.benefit-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.faults {
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: center;
}

.appliance-fault-series {
  display: grid;
  gap: 1.25rem;
}

.appliance-fault-blocks {
  display: grid;
  gap: 1.35rem;
}

.appliance-fault-block {
  align-items: stretch;
}

.appliance-fault-block .fault-focus {
  min-height: 14rem;
  align-content: start;
}

.faults-copy {
  display: grid;
  gap: 1rem;
}

.appliance-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.fault-chip {
  padding: 0.78rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 18px rgba(26, 191, 174, 0.08);
}

body[data-theme="dark"] .site-nav,
body[data-theme="dark"] .header-call,
body[data-theme="dark"] .btn-secondary,
body[data-theme="dark"] .hero-badges span,
body[data-theme="dark"] .lead-points span,
body[data-theme="dark"] .brand-pills span,
body[data-theme="dark"] .fault-chip,
body[data-theme="dark"] .price-meta a {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(19, 35, 43, 0.88);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
}

body[data-theme="dark"] .site-nav a {
  color: var(--text-soft);
}

body[data-theme="dark"] .header-call,
body[data-theme="dark"] .price-meta a,
body[data-theme="dark"] .btn-secondary,
body[data-theme="dark"] .fault-chip {
  color: #dbfffa;
}

.fault-chip.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--accent-strong), var(--accent));
  box-shadow: 0 14px 28px rgba(26, 191, 174, 0.2);
}

.fault-pin.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--accent-strong), var(--accent));
  box-shadow: 0 16px 30px rgba(26, 191, 174, 0.26);
}

.fault-pin.is-active::before {
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.96);
}

body[data-theme="dark"] .fault-pin.is-active {
  color: #062521;
  background: linear-gradient(145deg, #9afff4, #58eadb);
}

body[data-theme="dark"] .fault-pin.is-active::before {
  color: #ffffff;
  background: rgba(6, 37, 33, 0.34);
}

.fault-focus {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem;
}

.fault-focus-kicker {
  color: var(--accent-strong);
  font-size: 0.78rem;
}

.fault-focus h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.faults-visual {
  min-height: 100%;
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.88), transparent 20%),
    linear-gradient(180deg, rgba(237, 255, 251, 0.98), rgba(229, 255, 249, 0.98));
}

.appliance-faults-visual {
  display: grid;
  gap: 1.1rem;
}

body[data-theme="dark"] .faults-visual {
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(18, 35, 42, 0.98), rgba(15, 30, 36, 0.98));
}

.fault-visual-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.fault-visual-head span {
  color: var(--text-soft);
}

.fault-machine-wrap {
  position: relative;
  min-height: 30rem;
  margin-top: 0.6rem;
}

.appliance-visual-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.88fr);
  gap: 1rem;
  align-items: center;
}

.appliance-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 22rem;
}

.appliance-blob {
  top: 50%;
  left: 50%;
  width: 14rem;
  height: 14rem;
  transform: translate(-50%, -50%);
}

.appliance-image-wrap img {
  position: relative;
  z-index: 1;
  width: min(100%, 18rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(24, 92, 86, 0.16));
}

.appliance-quick-card {
  display: grid;
  gap: 0.95rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
}

.appliance-quick-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  line-height: 1.48;
}

body[data-theme="dark"] .appliance-quick-card {
  border-color: rgba(150, 214, 207, 0.14);
  background: rgba(11, 26, 31, 0.74);
}

.appliance-machine-wrap {
  min-height: 28rem;
}

.appliance-machine-wrap--fridge img {
  width: min(100%, 12rem);
  inset: 3rem 0 0 0;
}

.appliance-machine-wrap--dishwasher img {
  width: min(100%, 12rem);
  inset: 2.8rem 0 0 0;
}

.appliance-machine-wrap--boiler img {
  width: min(100%, 10rem);
  inset: 2.7rem 0 0 0;
}

.appliance-machine-wrap--oven img {
  width: min(100%, 17rem);
  inset: 5rem 0 0 0;
}

.appliance-machine-wrap--cooktop img {
  width: min(100%, 17rem);
  inset: 5rem 0 0 0;
}

.appliance-machine-wrap--fridge .fault-blob,
.appliance-machine-wrap--dishwasher .fault-blob,
.appliance-machine-wrap--boiler .fault-blob {
  left: 50%;
  top: 6.4rem;
  transform: translateX(-50%);
}

.appliance-machine-wrap--oven .fault-blob,
.appliance-machine-wrap--cooktop .fault-blob {
  left: 50%;
  top: 8rem;
  width: 16rem;
  height: 16rem;
  transform: translateX(-50%);
}

.fault-blob,
.expertise-glow {
  position: absolute;
  inset: auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(87, 218, 205, 0.34);
  filter: blur(6px);
}

.fault-blob {
  top: 5.5rem;
  left: 3rem;
}

.fault-machine-wrap img {
  position: absolute;
  inset: 3.5rem 0 0 0;
  width: min(100%, 24rem);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(24, 92, 86, 0.18));
}

.pin-1 {
  top: 6rem;
  left: 0.5rem;
}

.pin-2 {
  top: 10.5rem;
  right: 0.5rem;
}

.pin-3 {
  bottom: 8.5rem;
  left: 1.2rem;
}

.pin-4 {
  bottom: 4.2rem;
  right: 1rem;
}

.expertise-card {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: center;
}

.expertise-photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 26rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.88), transparent 22%),
    linear-gradient(145deg, #d8fff7, #a2f0e4);
  overflow: hidden;
}

body[data-theme="dark"] .expertise-photo {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(145deg, #16353c, #134948);
}

.expertise-glow {
  left: 2rem;
  bottom: 2rem;
}

.expertise-photo img {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  height: auto;
  object-fit: contain;
}

.expertise-copy {
  display: grid;
  gap: 1rem;
}

.expertise-list li {
  position: relative;
  padding-left: 1.5rem;
}

.company {
  align-items: start;
}

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

.stat-tile {
  display: grid;
  gap: 0.3rem;
  padding: 1.2rem;
  text-align: center;
}

.stat-tile strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-tile span {
  color: var(--text-soft);
}

.brand-cloud {
  display: grid;
  gap: 0.8rem;
}

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

.extra-hint {
  max-width: 46rem;
}

.extra-card {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}

.extra-card-button {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.extra-card-button:hover,
.extra-card-button:focus-visible {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  outline: none;
  box-shadow: var(--shadow-xl);
}

.extra-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 0.85rem;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.92), transparent 20%),
    linear-gradient(145deg, #dcfff8, #b5f3ea);
}

body[data-theme="dark"] .extra-media {
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(145deg, #17363c, #154744);
}

.extra-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.extra-pin-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
}

.extra-pin {
  max-width: calc(100% - 1.2rem);
  padding: 0.48rem 0.72rem;
  font-size: 0.68rem;
}

.extra-pin-grid .pin-1 {
  top: 0.8rem;
  left: 0.8rem;
}

.extra-pin-grid .pin-2 {
  top: 0.8rem;
  right: 0.8rem;
}

.extra-pin-grid .pin-3 {
  bottom: 0.8rem;
  left: 0.8rem;
}

.extra-pin-grid .pin-4 {
  right: 0.8rem;
  bottom: 0.8rem;
}

.extra-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.extra-action {
  display: inline-flex;
  align-items: center;
  margin-top: 0.8rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
}

body[data-theme="dark"] .extra-action {
  border-color: rgba(150, 214, 207, 0.14);
  background: rgba(11, 26, 31, 0.72);
}

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

.review-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.review-head,
.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.review-author strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.06rem;
  text-transform: uppercase;
}

.review-author span,
.review-card p,
.review-meta {
  color: var(--text-soft);
}

.review-card p {
  margin: 0;
  line-height: 1.6;
}

.review-stars,
.review-meta {
  font-family: "IBM Plex Mono", monospace;
}

.review-stars {
  color: var(--accent-strong);
  font-size: 0.96rem;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.review-meta {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-section {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.92fr);
  align-items: start;
}

.lead-card {
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.86), transparent 20%),
    linear-gradient(180deg, rgba(245, 255, 253, 0.98), rgba(236, 255, 251, 0.98));
}

.lead-form,
.lead-result {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  font-size: 0.95rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(87, 218, 205, 0.18);
}

.field-error {
  min-height: 1rem;
  color: #d84343;
  font-size: 0.84rem;
}

.lead-result[hidden] {
  display: none;
}

.site-footer {
  margin-top: 2rem;
  padding: 1.6rem 0 3.2rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.footer-main strong,
.footer-main a {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-copy {
  margin-top: 1.2rem;
  color: var(--text-soft);
  font-size: 0.8rem;
}

body.is-modal-open {
  overflow: hidden;
}

.detail-modal[hidden] {
  display: none;
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding:
    max(1rem, env(safe-area-inset-top, 0px))
    1rem
    max(1rem, env(safe-area-inset-bottom, 0px));
}

.detail-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 21, 0.58);
  backdrop-filter: blur(12px);
}

.detail-modal-sheet {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  width: min(100%, 34rem);
  padding: 1.5rem;
}

.detail-modal-close {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-deep);
  font-size: 1.45rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.82);
}

.detail-modal-kicker {
  margin: 0;
  padding-right: 3rem;
  color: var(--accent-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-modal-sheet h3 {
  margin: 0;
  font-size: clamp(1.55rem, 4.5vw, 2.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.detail-modal-sheet p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.58;
}

.detail-modal-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.detail-modal-list:empty {
  display: none;
}

body[data-theme="dark"] .detail-modal-close {
  border-color: rgba(150, 214, 207, 0.14);
  color: #dbfffa;
  background: rgba(11, 26, 31, 0.82);
}

.theme-toggle {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 29;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 38px rgba(25, 111, 101, 0.16);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.theme-toggle-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.theme-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle-moon {
  opacity: 0;
  transform: scale(0.7);
}

body[data-theme="dark"] .theme-toggle {
  border-color: rgba(150, 214, 207, 0.18);
  color: #dbfffa;
  background: rgba(16, 31, 37, 0.94);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .theme-toggle-sun {
  opacity: 0;
  transform: scale(0.7);
}

body[data-theme="dark"] .theme-toggle-moon {
  opacity: 1;
  transform: scale(1);
}

.sticky-call {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 28;
  display: none;
  justify-content: center;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(145deg, var(--accent-strong), var(--accent));
  box-shadow: 0 18px 38px rgba(26, 191, 174, 0.28);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1280px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-card,
  .contact-card {
    position: static;
  }

  .hero-main {
    order: 1;
  }

  .steps-card {
    order: 2;
  }

  .contact-card {
    order: 3;
  }

  .hero-layout > .steps-card,
  .hero-layout > .contact-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .steps-card .section-kicker,
  .steps-card h2,
  .steps-card .steps-list,
  .contact-card .contact-brand,
  .contact-card .contact-title,
  .contact-card .contact-phone,
  .contact-card .btn,
  .contact-card .contact-points,
  .contact-card .contact-mini-nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1120px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-main,
  .faults,
  .appliance-faults,
  .expertise-card,
  .lead-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .appliance-fault-series {
    display: grid;
    gap: 1rem;
  }

  .appliance-fault-blocks {
    gap: 1rem;
  }

  .price-grid,
  .benefit-grid,
  .stat-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .extra-pin-grid {
    display: block;
  }

  .offer-bar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .promo-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-side {
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
    top: auto;
    padding: calc(env(safe-area-inset-top, 0px) + 0.55rem) 0 0.55rem;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-layout,
  .section,
  .site-footer,
  .site-header {
    width: min(calc(100% - 1rem), var(--container));
  }

  .hero-layout {
    margin-top: 0;
  }

  .hero-main,
  .steps-card,
  .contact-card,
  .lead-card,
  .faults-visual,
  .expertise-card {
    padding: 1.2rem;
  }

  .hero-machine-card {
    min-height: 24rem;
    padding: 1.5rem;
  }

  .visual-chip {
    font-size: 0.68rem;
  }

  .chip-top-left {
    top: 4.2rem;
    left: 0.3rem;
  }

  .chip-top-right {
    top: 7rem;
    right: 0.3rem;
  }

  .chip-bottom-left {
    left: 0.6rem;
    bottom: 4.8rem;
  }

  .chip-bottom-right {
    right: 0.4rem;
    bottom: 6.8rem;
  }

  .fault-machine-wrap {
    min-height: 24rem;
  }

  .fault-machine-wrap img {
    inset: 2.5rem 0 0 0;
    width: min(100%, 19rem);
  }
}

@media (max-width: 640px) {
  .price-grid,
  .benefit-grid,
  .stat-grid,
  .review-grid,
  .extra-grid,
  .hero-layout > .steps-card,
  .hero-layout > .contact-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy h1,
  .section-head h2,
  .faults-copy h2,
  .lead-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-main--text-only .hero-copy h1 {
    max-width: 10.6ch;
  }

  .hero-main--text-only .hero-lead {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .price-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .extra-card {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .extra-card-button {
    justify-items: center;
  }

  .extra-action {
    justify-self: center;
  }

  .extra-pin {
    max-width: calc(100% - 1rem);
    padding: 0.45rem 0.65rem;
    font-size: 0.62rem;
  }

  .footer-main {
    flex-direction: column;
  }

  .sticky-call {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .theme-toggle {
    right: 1rem;
    bottom: calc(5.8rem + env(safe-area-inset-bottom, 0px));
  }

  .appliance-visual-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .appliance-fault-series {
    gap: 0.85rem;
  }

  .appliance-fault-blocks {
    gap: 0.9rem;
  }

  .appliance-image-wrap {
    min-height: 18rem;
  }

  .appliance-image-wrap img {
    width: min(100%, 14rem);
  }

  .detail-modal {
    align-items: end;
    padding: max(0.6rem, env(safe-area-inset-top, 0px)) 0 0;
  }

  .detail-modal-sheet {
    width: 100%;
    max-height: min(84vh, 42rem);
    overflow: auto;
    padding: 1.2rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    border-radius: 1.8rem 1.8rem 0 0;
  }
}

@media (max-width: 520px) {
  .section-kicker::before {
    width: 1.5rem;
  }

  .hero-machine-card {
    display: grid;
    justify-items: center;
    gap: 0.8rem;
    min-height: 22rem;
    padding: 1rem 1rem 1.15rem;
  }

  .hero-question {
    top: 0.85rem;
    right: 0.85rem;
    font-size: 0.7rem;
  }

  .visual-chip,
  .fault-pin {
    padding: 0.5rem 0.65rem;
    min-height: 2.7rem;
    justify-content: center;
    font-size: 0.68rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .hero-chip-grid,
  .fault-pin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    width: 100%;
  }

  .hero-chip-grid {
    margin-top: 0.35rem;
  }

  .visual-chip,
  .fault-pin {
    position: static;
  }

  .fault-pin {
    margin-top: 0;
  }

  .fault-machine-wrap {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    min-height: auto;
  }

  .fault-machine-wrap img {
    grid-column: 1 / -1;
    position: relative;
    inset: auto;
    margin-bottom: 0.15rem;
  }

  .fault-pin-grid {
    grid-column: 1 / -1;
  }

  .fault-blob {
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 14rem;
    height: 14rem;
  }

  .appliance-tab-list,
  .appliance-chip-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appliance-tab,
  .appliance-issue-chip {
    width: 100%;
    min-height: 3rem;
    text-align: center;
  }
}
