.robot-hub {
  --robot-green: #00a94f;
  --robot-ink: #17211d;
  --robot-soft: #f1f7f4;
  color: var(--robot-ink);
}

.seo-keyword-accent {
  padding: 0 .08em;
  background: linear-gradient(transparent 64%, rgba(23, 216, 117, .36) 64%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.messenger__wrapper .seo-keyword-accent {
  background: linear-gradient(transparent 61%, rgba(45, 238, 139, .48) 61%);
}

.messenger__wrapper .seo-keyword-accent--hero {
  background: none;
  color: #52e99b;
  font-weight: 850;
  text-shadow: none;
}

.robot-hub__intro {
  max-width: 880px;
  margin: 34px 0 24px;
  font-size: 18px;
  line-height: 1.65;
}

.robot-hub__nav,
.robot-hub__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 42px;
}

.robot-hub__nav a,
.robot-hub__brands span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid rgba(0, 169, 79, .2);
  border-radius: 999px;
  background: #fff;
  color: #164e35;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.robot-hub__nav a:hover {
  transform: translateY(-2px);
  border-color: var(--robot-green);
  box-shadow: 0 10px 25px rgba(0, 92, 46, .12);
}

.robot-hub__nav a:visited { color: #164e35; }

.robot-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 46px;
}

.robot-hub__card {
  padding: 22px;
  border: 1px solid rgba(7, 54, 41, .09);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff 0%, var(--robot-soft) 100%);
  box-shadow: 0 14px 35px rgba(9, 57, 42, .07);
}

.robot-hub__card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.robot-hub__card p {
  margin: 0;
  color: #50615a;
  line-height: 1.55;
}

.robot-hub__grid > a.robot-fault-card {
  position: relative; display: flex; min-height: 230px; overflow: hidden;
  border: 0 !important; border-radius: 20px; color: #fff; text-decoration: none;
  background: #13291d; transform: translateZ(0);
}
.robot-hub__grid > a.robot-fault-card img {
  position: absolute; inset: -1px; width: calc(100% + 2px); height: calc(100% + 2px);
  max-width: none; object-fit: cover; filter: brightness(.68); transition: transform .3s ease;
}
.robot-hub__grid > a.robot-fault-card article {
  position: relative; z-index: 1; align-self: flex-end; width: 100%; margin: 0 !important;
  padding: 74px 20px 20px; border: 0 !important; border-radius: 0 !important;
  background: linear-gradient(transparent, rgba(5,17,11,.92)) !important; box-shadow: none !important;
}
.robot-hub__grid > a.robot-fault-card h3,.robot-hub__grid > a.robot-fault-card p { color:#fff; text-shadow:0 2px 8px rgba(0,0,0,.55); }
.robot-hub__grid > a.robot-fault-card:hover img { transform: scale(1.045); }
.robot-fault-page{max-width:1120px;margin:0 auto;padding:16px 0 48px;color:#17231c}
.robot-fault-page__nav,.robot-fault-page__related{display:flex;gap:9px;flex-wrap:wrap;margin-bottom:22px}
.robot-fault-page__nav a,.robot-fault-page__related a{padding:9px 14px;border:1px solid #d7eadf;border-radius:999px;background:#f0f8f3;color:#143c29;text-decoration:none;font-weight:700}
.robot-fault-page__visual{display:grid;grid-template-columns:minmax(280px,48%) 1fr;gap:24px;align-items:center;margin:24px 0 30px;padding:18px;border:1px solid #dcebe2;border-radius:22px;background:linear-gradient(145deg,#f0f8f3,#fff)}
.robot-fault-page__visual img{display:block;width:100%;aspect-ratio:3/2;object-fit:cover;border-radius:16px}.robot-fault-page__visual p{margin:0;font-size:18px;line-height:1.6}
.robot-fault-page__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.robot-fault-page__card{padding:19px;border:1px solid #dce9e0;border-radius:17px;background:#fff;box-shadow:0 10px 28px rgba(15,56,37,.07)}
.robot-fault-page__card h3{margin:0 0 8px;color:#123a27;font-size:19px}.robot-fault-page__card p{margin:0;line-height:1.55}.robot-fault-page h2{margin:34px 0 15px;color:#10291b}
.robot-fault-page__note{margin:22px 0;padding:17px 20px;border-left:4px solid #2ca764;background:#eff8f2;border-radius:0 15px 15px 0;line-height:1.6}

.robot-hub__steps {
  counter-reset: robot-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 46px;
  padding: 0;
  list-style: none;
}

.robot-hub__steps li {
  counter-increment: robot-step;
  padding: 20px;
  border-radius: 18px;
  background: #073629;
  color: rgba(255, 255, 255, .83);
  line-height: 1.5;
}

.robot-hub__steps li::before {
  content: counter(robot-step);
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  background: #17d875;
  color: #052d21;
  font-weight: 900;
}

.robot-hub__steps strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.robot-hub__notice,
.robot-hub__cta {
  margin: 28px 0 42px;
  padding: 24px 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e9fff3 0%, #f5fbf8 100%);
  box-shadow: inset 4px 0 0 var(--robot-green);
}

.robot-hub__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #073629, #0b503d);
  box-shadow: none;
  color: #fff;
}

.robot-hub__cta h2,
.robot-hub__cta p {
  margin: 0;
  color: #fff;
}

.robot-hub__cta p { margin-top: 7px; color: rgba(255,255,255,.78); }
.robot-hub__cta .btn { flex: 0 0 auto; }

.robot-hub details {
  margin-bottom: 10px;
  padding: 17px 20px;
  border: 1px solid rgba(7, 54, 41, .1);
  border-radius: 14px;
  background: #fff;
}

.robot-hub summary {
  cursor: pointer;
  color: #153d2f;
  font-weight: 800;
}

.robot-hub details p { margin: 12px 0 0; }

.messenger__wrapper:has(.messenger__image img[src*="robot-vacuum-loft-hero-20260907"]) {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(7, 31, 25, .76) 0%, rgba(7, 31, 25, .38) 47%, rgba(7, 31, 25, .08) 100%),
    url('/assets/custom/img/service-heroes/robot-vacuum-loft-hero-20260907.webp') center / cover no-repeat;
}

.messenger__wrapper:has(.messenger__image img[src*="robot-vacuum-loft-hero-20260907"]) .messenger__image {
  display: none;
}

.messenger__wrapper:has(.messenger__image img[src*="robot-vacuum-loft-hero-20260907"]) > .row {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .robot-hub__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .robot-fault-page__visual{grid-template-columns:1fr}.robot-fault-page__grid{grid-template-columns:1fr 1fr}
}

@media (max-width: 575px) {
  .robot-hub__intro { margin-top: 24px; font-size: 16px; }
  .robot-hub__grid,
  .robot-hub__steps { grid-template-columns: 1fr; }
  .robot-hub__card { padding: 18px; border-radius: 16px; }
  .robot-hub__cta { align-items: stretch; flex-direction: column; }
  .robot-hub__cta .btn { width: 100%; }
  .robot-fault-page__grid{grid-template-columns:1fr}.robot-fault-page__visual{padding:12px}.robot-hub__grid > a.robot-fault-card{min-height:210px}
  .messenger__wrapper:has(.messenger__image img[src*="robot-vacuum-loft-hero-20260907"]) {
    background:
      linear-gradient(180deg, rgba(7, 31, 25, .62) 0%, rgba(7, 31, 25, .68) 58%, rgba(7, 31, 25, .76) 100%),
      url('/assets/custom/img/service-heroes/robot-vacuum-loft-hero-20260907.webp') 50% center / cover no-repeat;
  }
}

@media (prefers-reduced-motion: reduce) {
  .robot-hub__nav a,.robot-hub__grid > a.robot-fault-card img { transition: none; }
}
