.home-preloader {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.home-preloader.is-visible {
  opacity: 1;
  visibility: visible;
}

.home-preloader.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.home-preloader__spinner {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 3px solid rgba(15, 95, 168, 0.16);
  border-top-color: #0f5fa8;
  animation: homePreloaderSpin 0.7s linear infinite;
}

.home-hero {
  margin-top: -14px;
  margin-bottom: 0;
}

.home-hero-banner-shell {
  width: 100%;
}

.home-hero .home-banner-carousel {
  border-radius: 14px;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.home-hero .home-banner-slide {
  height: clamp(100px, 25vw, 230px);
}

.home-banner-section {
  margin-top: 0;
}

.home-banner-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  background: #dee9ff;
}

.home-banner-track {
  display: flex;
  width: 100%;
  transition: transform 1s ease-in-out;
}

.home-banner-slide {
  flex-shrink: 0;
  width: 100%;
  height: clamp(105px, calc(34vw - 35px), 200px);
}

.home-banner-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.home-banner-dot {
  width: 10px;
  height: 10px;
  background-color: #bbb;
  border-radius: 50%;
  opacity: 0.6;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
  cursor: pointer;
}

.home-banner-dot.active {
  background-color: #0e599d;
  transform: scale(1.3);
  opacity: 1;
}

@keyframes homePreloaderSpin {
  100% {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-preloader__spinner {
    animation: none;
  }
}

.home-advantages {
  margin-top: 0;
}

.home-hero + .home-advantages {
  margin-top: 0;
}

.home-advantages-strip {
  padding: 30px 0 0;
  display: grid;
  gap: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-advantage-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.home-advantage-icon {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
  margin-top: 1px;
}

.home-advantage-title {
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 800;
  color: #0f203a;
}

.home-advantage-text {
  margin-top: 2px;
  font-size: 0.83rem;
  line-height: 1.22;
  color: #5f6f89;
}

.home-real-catalog-section {
  margin-top: -2px;
}

.home-real-catalog-rail-shell {
  position: relative;
}

.home-real-catalog-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 145px;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 50px;
  min-height: 240px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-real-catalog-track::-webkit-scrollbar {
  display: none;
}

.home-real-catalog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 6px;
  width: 145px;
  min-height: 140px;
  height: 140px;
  padding: 8px 0 0;
  border-radius: 14px;
  border: 1px solid rgba(23, 43, 69, 0.08);
  background: #f3f5fb;
  color: #1f2a38;
  text-decoration: none;
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-real-catalog-title {
  margin: 0;
  padding: 0 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.24;
  font-weight: 600;
  text-align: center;
}

.home-real-catalog-media {
  align-self: end;
  width: 100%;
  height: 80px;
  margin: 0;
  margin-top: auto;
}

.home-real-catalog-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-real-catalog-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(30, 52, 79, 0.16);
  background: #ffffff;
  color: #1f3550;
  font-size: 1.65rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(17, 41, 75, 0.2);
}

.home-real-catalog-nav-prev {
  left: 0;
}

.home-real-catalog-nav-next {
  right: 0;
}

.home-real-catalog-nav:disabled {
  opacity: 0.45;
  box-shadow: none;
}

.home-real-catalog-more {
  display: none;
}

@media (hover: hover) {
  .home-real-catalog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(21, 48, 84, 0.16);
  }
}

@media (min-width: 980px) {
  .home-advantage-item-offset {
    transform: translateX(25px);
  }
}

.home-logo-section {
  margin-top: -14px;
  margin-bottom: -18px;
}

.logo-carousel-container {
  width: 100%;
  max-width: none;
  height: 132px;
  overflow: hidden;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.logo-carousel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: homeLogoScroll 40s linear infinite;
}

.logo-carousel-slide {
  flex-shrink: 0;
  width: 210px;
  height: 132px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-carousel-slide img {
  max-width: 182px;
  max-height: 108px;
  width: 100%;
  object-fit: contain;
}

.logo-carousel-container:hover .logo-carousel-track {
  animation-play-state: paused;
}

.stout-showcase-section {
  margin-top: 6px;
}

.stout-showcase-title {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2.2vw, 2.05rem);
  line-height: 1.12;
  color: #102645;
}

.stout-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.stout-showcase-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(27, 50, 79, 0.08);
  min-height: 208px;
  padding: 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
}

.stout-showcase-card-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 800;
  color: #1b2a3d;
}

.stout-showcase-card-image {
  width: 100%;
  height: 126px;
  object-fit: contain;
  align-self: end;
}

.stout-showcase-card-placeholder {
  background: transparent;
}

.plumbing-banner-section {
  margin-top: 12px;
}

.plumbing-banner-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plumbing-banner-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: clamp(128px, calc(18vw - 40px), 192px);
  border: 0;
  background: #b71f2d;
}

.plumbing-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-contacts-card {
  padding: var(--space-4);
  display: grid;
  gap: var(--space-2);
}

.home-contacts-card p {
  color: #415b81;
}

.home-contacts-list {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.home-contacts-map-shell {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.home-contacts-map-shell #custom-dark-map {
  height: 520px;
  border-radius: 20px;
  background: #1a1a1a;
}

.home-map-contact-overlay {
  position: absolute;
  top: 22px;
  left: 22px;
  width: min(320px, calc(100% - 44px));
  border-radius: 30px;
  background: var(--surface);
  color: var(--text-main);
  border: 1px solid var(--border-soft);
  padding: 28px 24px 22px;
  box-shadow: none;
  display: grid;
  gap: 14px;
  z-index: 8;
  font-family: var(--font-body);
}

.home-map-contact-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
}

.home-map-contact-subline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-map-contact-subtext {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.home-map-contact-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-map-contact-social {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: #fff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.home-map-contact-social svg {
  width: 14px;
  height: 14px;
}

.home-map-contact-social:hover {
  background: var(--primary-soft);
}

.home-map-contact-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--text-main);
}

.home-map-contact-row p {
  margin: 0;
}

.home-map-contact-row a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.home-map-contact-row a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.home-map-contact-note {
  margin: 3px 0 0;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.home-map-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #edf2fb;
  color: #39598a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-map-contact-svg {
  width: 16px;
  height: 16px;
  line-height: 1;
}

.home-map-contact-cta {
  margin-top: 8px;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--primary);
  box-shadow: 0 10px 20px rgba(14, 89, 157, 0.28);
  width: 100%;
}

.home-map-contact-cta:hover {
  background: var(--primary-dark);
}

.home-map-email-form {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.home-map-email-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.home-map-email-controls .button {
  min-width: 120px;
}

.home-map-policy-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #60789d;
  text-align: center;
}

.home-contacts-cards-section {
  margin-top: 8px;
  margin-bottom: 14px;
}

.home-tail-map-section {
  margin-top: 0;
  padding-bottom: 0;
}

.home-tail-map-shell {
  position: relative;
  min-height: clamp(340px, 48vw, 500px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #cfd9e6;
  background: #fff;
  box-shadow: 0 20px 40px rgba(11, 29, 51, 0.22);
}

.home-tail-map-shell::after {
  display: none;
}

.home-tail-map-shell #custom-dark-map {
  height: clamp(340px, 48vw, 500px);
  min-height: clamp(340px, 48vw, 500px);
  border-radius: 28px;
  filter: saturate(0.88) contrast(0.96);
}

.home-contacts-cards-title {
  margin: 0 0 25px;
  font-family: var(--font-body);
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #132b4d;
  font-weight: 700;
}

.home-contacts-cards-grid {
  display: none;
}

.home-contact-card {
  border: 1px solid #e2e9f4;
  border-radius: 12px;
  background: #fff;
  padding: 14px 12px;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 180px;
}

.home-contact-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf2fb;
  color: #39598a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-contact-card-icon svg {
  width: 18px;
  height: 18px;
}

.home-contact-card h3 {
  margin: 0;
  color: #173459;
  font-size: 1.03rem;
  line-height: 1.2;
  font-weight: 800;
}

.home-contact-card p {
  margin: 0;
  color: #5c7392;
  font-size: 0.9rem;
  line-height: 1.24;
}

.home-contact-card a {
  margin-top: auto;
  color: #5a82cf;
  font-size: 0.9rem;
  font-weight: 600;
}

.home-contact-card-messengers {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-contact-messenger {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.home-contact-messenger svg {
  width: 14px;
  height: 14px;
}

.home-contact-messenger.is-telegram {
  background: #2d96df;
}

.home-contact-messenger.is-whatsapp {
  background: #1fbf61;
}

.home-promo-section:not(.home-recommendations-section) .section-head {
  margin-bottom: 30px;
  align-items: center;
}

.home-promo-section:not(.home-recommendations-section) .section-title {
  font-family: var(--font-body);
  font-size: 23px;
  text-transform: none;
}

.home-offers-head-section .section-title {
  font-family: var(--font-body);
  font-size: 23px;
  text-transform: none;
}

.home-promo-section:not(.home-recommendations-section) .section-link {
  align-self: center;
  margin-top: 0;
  font-size: 14px;
}

.home-promo-section:not(.home-recommendations-section) .home-promo-strip {
  margin-bottom: 30px;
}

.home-offers-head-section .section-head {
  margin-bottom: 30px;
  align-items: center;
}

.home-offers-head-section .section-link {
  align-self: center;
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 14px;
}

.home-promo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  scroll-snap-type: none;
  padding-bottom: 0;
  min-height: clamp(320px, calc((100% - 10px) * 0.45 + 190px), 720px);
}

.home-promo-strip > * {
  flex: initial;
  min-width: 0;
  scroll-snap-align: unset;
  height: 100%;
}

.home-promo-strip .product-card-compact {
  min-height: 100%;
  height: 100%;
}

.home-recommendations-section .home-promo-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-recommendations-section .home-promo-strip::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.home-recommendations-section .home-promo-strip > * {
  flex: 0 0 calc((100% - 10px) / 2);
  min-width: calc((100% - 10px) / 2);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-promo-section.home-recommendations-section .section-head {
  margin-top: 50px;
  margin-bottom: 30px;
  align-items: center;
}

.home-promo-section.home-recommendations-section .section-title {
  font-size: 23px;
  text-transform: none;
}

.home-promo-section.home-recommendations-section .section-link {
  font-size: 14px;
}

.home-promo-section.home-recommendations-section .home-promo-strip {
  margin-bottom: 50px;
}

.home-promo-pagination {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 4px 0;
}

.home-promo-page-btn {
  min-width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 0;
  background: #f0f3f7;
  color: #1a2e4a;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 9px;
}

.home-promo-page-btn.is-active {
  background: #0d2e5f;
  color: #fff;
}

.home-promo-page-btn.is-arrow {
  font-size: 1.1rem;
}

.home-promo-page-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.home-promo-ellipsis {
  color: #6f7f98;
  font-size: 0.88rem;
  padding: 0 2px;
}

.home-pro-business-section {
  margin-top: 12px;
  margin-bottom: 18px;
}

.home-pro-business-top-banners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 30px;
  min-height: 172px;
}

.home-pro-business-top-banner {
  display: block;
  height: 172px;
  border-radius: 18px;
  border: 1px solid rgba(34, 56, 84, 0.18);
  position: relative;
  overflow: hidden;
  background: #e7edf6;
  box-shadow: 0 10px 22px rgba(19, 36, 62, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-pro-business-top-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-pro-business-top-banner:hover,
.home-pro-business-top-banner:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(19, 36, 62, 0.16);
}

.home-plumbing-gallery-section {
  margin-top: -6px;
  margin-bottom: 16px;
}

.home-plumbing-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 1136px);
  max-width: 1136px;
  grid-auto-rows: 84px;
  gap: 13px;
  margin: 0 auto;
}

.home-plumbing-gallery-item {
  position: relative;
  display: block;
  grid-column: var(--gallery-col) / span var(--gallery-col-span, 1);
  grid-row: var(--gallery-row) / span var(--gallery-row-span, 2);
  min-height: 0;
  border-radius: var(--home-unified-radius);
  overflow: hidden;
  background: #e8ecf2;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.18s ease;
}

.home-plumbing-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(9, 20, 36, 0) 0%,
    rgba(11, 24, 42, 0) 56%,
    rgba(16, 34, 59, 0.42) 72%,
    rgba(22, 44, 74, 0.82) 100%
  );
}

.home-plumbing-gallery-item:hover,
.home-plumbing-gallery-item:focus-visible {
  transform: translateY(-1px);
}

.home-plumbing-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.24s ease;
}

.home-plumbing-gallery-item:hover img,
.home-plumbing-gallery-item:focus-visible img {
  transform: scale(1.015);
}

.home-plumbing-gallery-chip {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  padding: 0;
  background: none;
  color: #f7f9fc;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(8, 18, 31, 0.45);
  box-shadow: none;
}

.home-plumbing-gallery-item-note {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6e9f0;
  color: #2a466e;
  text-align: center;
  padding: 10px;
}

.home-plumbing-gallery-note-label {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.home-plumbing-gallery-item-note::after {
  content: "\2197";
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(77, 108, 143, 0.2);
  color: #3a5f8e;
  font-size: 8px;
  line-height: 1;
}

.home-pro-business-head {
  align-items: center;
  margin-bottom: 30px;
}

.home-pro-business-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 23px;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.05;
  text-transform: none;
  color: #132748;
}

.home-pro-business-head-link {
  font-family: var(--font-body);
  font-size: 14px;
  align-self: center;
}

.home-pro-business-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.home-pro-business-accordion {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  min-height: 0;
}

.home-pro-business-side-banner {
  position: relative;
  height: 230px;
  min-height: 230px;
  border-radius: 20px;
  border: 1px solid rgba(34, 56, 84, 0.2);
  background: linear-gradient(140deg, #596475 0%, #758192 100%);
  overflow: hidden;
}

.home-pro-business-side-banner::before,
.home-pro-business-side-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-pro-business-side-banner::before {
  width: 138px;
  height: 138px;
  top: -12px;
  right: 46px;
  background: radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.22) 72%, rgba(255, 255, 255, 0.08) 100%);
  animation: home-pro-orb-float 6.2s ease-in-out infinite;
}

.home-pro-business-side-banner::after {
  width: 108px;
  height: 108px;
  top: 62px;
  right: 80px;
  background: radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.18) 70%, rgba(255, 255, 255, 0.06) 100%);
  animation: home-pro-orb-float 5.4s ease-in-out infinite reverse;
}

@keyframes home-pro-orb-float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 6px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes home-pro-card-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.home-pro-business-card {
  position: relative;
  min-width: 0;
  height: 230px;
  min-height: 230px;
  border-radius: 20px;
  border: 1px solid #d8e0eb;
  padding: 16px;
  display: flex;
  flex-direction: column;
  color: #102c53;
  background: #f3f5f8;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-pro-business-card,
.home-pro-business-card * {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.home-pro-business-card::before {
  content: none;
}

.home-pro-business-card.is-platform {
  background: #f3f5f8;
}

.home-pro-business-card.is-logistics {
  background: #f3f5f8;
}

.home-pro-business-card.is-loyalty {
  background: #f3f5f8;
}

.home-pro-business-card-content {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  max-width: none;
  min-height: 0;
}

.home-pro-business-card-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.home-pro-business-icon {
  width: 28px;
  height: 28px;
  color: #1b3f71;
  flex: 0 0 auto;
  margin-bottom: 18px;
}

.home-pro-business-icon svg {
  width: 100%;
  height: 100%;
}

.home-pro-business-text {
  margin: 0;
  color: #14335f;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.home-pro-business-link {
  color: #5878a8;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  opacity: 1;
  margin-top: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.home-pro-business-link:hover,
.home-pro-business-link:focus-visible {
  text-decoration: underline;
  opacity: 1;
}

.home-pro-business-card:hover,
.home-pro-business-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(24, 46, 77, 0.14);
}

#homeReviewsTrack,
.home-promo-strip {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#homeReviewsTrack::-webkit-scrollbar,
.home-promo-strip::-webkit-scrollbar {
  display: none;
}

.home-review-form {
  margin-top: var(--space-3);
  max-width: none;
  width: 100%;
  padding: 16px 18px;
  font-size: 14.5px;
}

.home-review-form .button {
  width: auto;
  min-width: 220px;
  padding: 10px 22px;
  justify-self: start;
}

#homeReviewsTrack > * {
  flex-basis: 90%;
}

#homeReviewsTrack .review-card {
  min-height: 158px;
  padding: 16px 18px;
  font-size: 14.5px;
}

#homeReviewsTrack .review-author {
  font-size: 14.5px;
}

#homeReviewsTrack .review-stars {
  font-size: 14.5px;
}

#homeReviewsTrack .review-text {
  font-size: 14.5px;
}

#homeReviewsTrack .review-date {
  font-size: 12.9px;
}

.home-review-form .form-textarea {
  min-height: 96px;
}

.home-review-form .form-grid {
  gap: 10px;
}

.home-review-form .form-label,
.home-review-form .form-input,
.home-review-form .form-textarea,
.home-review-form .button {
  font-size: 14.5px;
}

.home-review-form .review-form-star {
  width: 32px;
  height: 32px;
  font-size: 0.95rem;
}

.home-review-layout {
  display: grid;
}

.home-review-illustration {
  display: none;
}

.review-form-toggle {
  font-size: 14.5px;
}

@media (max-width: 979px) {
  .stout-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .home-pro-business-section {
    margin-top: 8px;
    margin-bottom: 14px;
  }

  .home-pro-business-top-banners {
    position: relative;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    margin-bottom: 30px;
    min-height: 170px;
  }

  .home-pro-business-top-banners::-webkit-scrollbar {
    display: none;
  }

  .home-pro-business-top-banners::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 34px;
    height: 6px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(44, 67, 98, 0.82) 2px, transparent 3px) center / 11px 6px repeat-x;
    pointer-events: none;
    z-index: 2;
  }

  .home-pro-business-top-banners::after {
    content: "Scroll >";
    position: absolute;
    right: 8px;
    bottom: 0;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(44, 67, 98, 0.22);
    background: rgba(255, 255, 255, 0.92);
    color: #233a57;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 2;
  }

  .home-pro-business-top-banner {
    height: 150px;
    border-radius: 16px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .home-pro-business-layout {
    display: block;
  }

  .home-pro-business-side-banner {
    display: none;
  }

  .home-pro-business-title {
    font-size: 23px;
    line-height: 1.05;
  }

  .home-plumbing-gallery-section {
    margin-top: -2px;
    margin-bottom: 10px;
  }

  .home-plumbing-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    grid-auto-rows: 78px;
    gap: 8px;
  }

  .home-plumbing-gallery-item {
    grid-column: auto / span 1 !important;
    grid-row: auto / span 2 !important;
    border-radius: var(--home-unified-radius);
  }

  .home-plumbing-gallery-chip {
    font-size: 11px;
    line-height: 1.14;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .home-plumbing-gallery-note-label {
    font-size: 13px;
  }

  .home-pro-business-accordion {
    display: flex;
    gap: 8px;
    height: 230px;
    min-height: 230px;
    overflow: hidden;
    align-items: stretch;
  }

  .home-pro-business-accordion::-webkit-scrollbar {
    display: none;
  }

  .home-pro-business-card {
    flex: 0 0 44px;
    border-radius: 14px;
    height: 230px;
    min-height: 230px;
    padding: 12px 10px;
    cursor: pointer;
    transition: flex-basis 0.3s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
  }

  .home-pro-business-card-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-width: 0;
    overflow: hidden;
    transform: translate3d(0, 8px, 0);
    transition: opacity 0.2s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), max-width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-pro-business-card.is-active {
    flex: 1 1 auto;
    padding: 14px 12px;
    border-color: #c8d4e6;
    box-shadow: 0 10px 22px rgba(21, 45, 78, 0.1);
  }

  .home-pro-business-card:not(.is-active):hover,
  .home-pro-business-card:not(.is-active):focus-within {
    transform: none;
    box-shadow: none;
  }

  .home-pro-business-card.is-active .home-pro-business-card-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-width: 320px;
    transform: translate3d(0, 0, 0);
    animation: home-pro-card-reveal 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-pro-business-card-title {
    font-size: 17px;
    line-height: 1.25;
  }

  .home-pro-business-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 0;
    transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-pro-business-card.is-active .home-pro-business-icon {
    margin-bottom: 12px;
    transform: scale(1.03);
  }

  .home-pro-business-text {
    font-size: 15px;
  }

  .home-pro-business-link {
    font-size: 15px;
  }

  .home-contacts-cards-grid {
    padding: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-contact-card {
    min-height: 0;
  }

  .stout-showcase-title {
    font-size: 1.25rem;
  }

  .stout-showcase-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .stout-showcase-card {
    min-height: 192px;
    padding: 12px;
  }

  .stout-showcase-card-image {
    height: 104px;
  }

  .plumbing-banner-section {
    margin-top: 10px;
  }

  .plumbing-banner-rail {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .plumbing-banner-rail::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .plumbing-banner-card {
    flex: 0 0 100%;
    min-height: 134px;
    scroll-snap-align: start;
    border-radius: 18px;
  }

  .home-promo-section .section-head {
    margin-bottom: 30px;
    align-items: center;
  }

  .home-promo-section .section-head > div {
    display: grid;
    gap: 4px;
  }

  .home-promo-section .section-title {
    font-size: calc(1.95rem - 15px);
    line-height: 1;
  }

  .home-offers-head-section .section-title {
    font-size: 23px;
    line-height: 1;
  }

  .home-contacts-cards-title {
    font-size: 23px;
    line-height: 1;
  }

  .home-promo-section .section-subtitle {
    font-size: 0.8rem;
    line-height: 1.15;
    margin-top: 2px;
  }

  .home-promo-section .section-link {
    font-size: 0.74rem;
    line-height: 1.1;
    padding-top: 0;
    margin-top: 0;
    align-self: center;
    white-space: nowrap;
  }

  .home-offers-head-section .section-head {
    align-items: center;
  }

  .home-offers-head-section .section-link {
    align-self: center;
    white-space: nowrap;
  }

  .home-offers-head-section .section-link {
    font-size: 14px;
    line-height: 1.1;
  }

  .home-map-contact-overlay {
    box-shadow: none;
  }

  .home-tail-map-shell {
    background: #fff;
  }

  .home-promo-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .home-promo-strip > * {
    flex: 0 0 calc((100% - 10px) / 2);
    min-width: calc((100% - 10px) / 2);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .home-advantages-strip {
    display: flex;
    gap: 10px;
    padding: 30px 0 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .home-advantages-strip::-webkit-scrollbar {
    display: none;
  }

  .home-advantage-item {
    flex: 0 0 88%;
    min-width: 0;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .home-advantage-icon {
    width: 36px;
    height: 36px;
    margin-top: 0;
  }

  .home-advantage-title {
    font-size: 0.95rem;
    line-height: 1.15;
  }

  .home-advantage-text {
    font-size: 0.82rem;
    line-height: 1.2;
    margin-top: 1px;
  }

  .home-real-catalog-track {
    grid-auto-flow: column;
    --home-real-catalog-mobile-gap: 8px;
    grid-auto-columns: calc((100% - (var(--home-real-catalog-mobile-gap) * 2)) / 3) !important;
    grid-template-columns: none;
    gap: var(--home-real-catalog-mobile-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 35px 0;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .home-real-catalog-track::-webkit-scrollbar {
    display: none;
  }

  .home-real-catalog-card {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 145 / 140;
    border-radius: 14px;
    padding: 6px 0 0;
    border: 1px solid rgba(23, 43, 69, 0.08);
    background: #f3f5fb;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .home-real-catalog-title {
    padding: 0 6px;
    font-size: 0.72rem;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
  }

  .home-real-catalog-media {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    margin-top: auto;
  }

  .home-real-catalog-image {
    object-fit: cover;
    object-position: center bottom;
  }

  .home-real-catalog-nav {
    display: grid;
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
  }

  .home-real-catalog-nav-prev {
    left: -8px;
  }

  .home-real-catalog-nav-next {
    right: -8px;
  }

  .home-real-catalog-more {
    margin-top: 14px;
    min-height: 58px;
    border-radius: 20px;
    background: #dfe2ee;
    color: #5d83d8;
    display: grid;
    place-items: center;
    text-align: center;
    text-decoration: none;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1;
  }

  .home-real-catalog-section .container {
    padding-inline: 30px;
  }
}

@media (min-width: 640px) and (max-width: 979px) {
  .home-real-catalog-track {
    --home-real-catalog-tablet-gap: 10px;
    grid-auto-columns: calc((100% - (var(--home-real-catalog-tablet-gap) * 3)) / 4) !important;
    gap: var(--home-real-catalog-tablet-gap);
    padding: 35px 0;
  }

  .home-plumbing-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .home-pro-business-side-banner {
    height: 230px;
    min-height: 230px;
  }

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

  .home-advantages-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    padding: 30px 0 0;
  }

  .home-promo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-recommendations-section .home-promo-strip > * {
    flex-basis: calc((100% - 20px) / 3);
    min-width: calc((100% - 20px) / 3);
  }

  .home-promo-pagination {
    margin-top: 12px;
  }

  #homeReviewsTrack > * {
    flex-basis: 32%;
  }

  .home-real-catalog-track {
    grid-auto-columns: 145px;
  }
}

@media (min-width: 980px) {
  .home-advantages {
    margin-top: 0;
  }

  .home-real-catalog-section {
    margin-top: 0;
  }

  .home-real-catalog-track {
    padding: 50px;
  }

  .home-real-catalog-section + .home-promo-section {
    margin-top: 8px;
  }

  .home-pro-business-layout {
    grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
  }

  .home-pro-business-accordion {
    display: flex;
    height: 230px;
    min-height: 230px;
    gap: 10px;
  }

  .home-pro-business-card {
    flex: 0 0 52px;
    height: 230px;
    min-height: 230px;
    padding: 14px 12px;
    border-radius: 22px;
    cursor: pointer;
    transition: flex-basis 0.34s cubic-bezier(0.22, 1, 0.36, 1), padding 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease, border-color 0.24s ease;
  }

  .home-pro-business-card-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-width: 0;
    overflow: hidden;
    transform: translate3d(0, 10px, 0);
    transition: opacity 0.22s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), max-width 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-pro-business-card.is-active {
    flex: 1 1 auto;
    padding: 16px;
    border-color: #c8d4e6;
    box-shadow: 0 14px 28px rgba(21, 45, 78, 0.12);
  }

  .home-pro-business-card.is-active .home-pro-business-card-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-width: 420px;
    transform: translate3d(0, 0, 0);
    animation: home-pro-card-reveal 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-pro-business-icon {
    margin-bottom: 0;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-pro-business-card.is-active .home-pro-business-icon {
    margin-bottom: 16px;
    transform: translate3d(0, 0, 0) scale(1.04);
  }

  .home-pro-business-card:not(.is-active):hover,
  .home-pro-business-card:not(.is-active):focus-within {
    transform: none;
    box-shadow: none;
  }

  .home-pro-business-side-banner {
    height: 230px;
    min-height: 230px;
    border-radius: 24px;
  }

  .home-advantages-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 30px 0 0;
  }

  .home-advantage-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
  }

  .home-advantage-icon {
    width: 54px;
    height: 54px;
    margin-top: 1px;
  }

  .home-advantage-title {
    font-size: 0.85rem;
    line-height: 1.15;
  }

  .home-advantage-text {
    font-size: 0.78rem;
    line-height: 1.16;
    margin-top: 1px;
  }

  .home-real-catalog-title {
    font-size: 0.9rem;
    line-height: 1.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-pro-business-card,
  .home-pro-business-card-content,
  .home-pro-business-icon,
  .home-pro-business-side-banner::before,
  .home-pro-business-side-banner::after {
    animation: none;
    transition: none;
  }
}

@media (min-width: 980px) {
  .home-pro-business-section {
    margin-top: 18px;
    margin-bottom: 24px;
  }

  .home-pro-business-layout {
    grid-template-columns: minmax(0, 3fr) minmax(300px, 2fr);
  }

  .home-pro-business-accordion {
    gap: 10px;
  }

  .home-contacts-cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-advantages {
    margin-top: 0;
  }

  .home-advantages-strip {
    gap: 14px;
    padding: 30px 0 0;
  }

  .home-promo-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .home-recommendations-section .home-promo-strip > * {
    flex-basis: calc((100% - 40px) / 5);
    min-width: calc((100% - 40px) / 5);
  }

  .home-real-catalog-track {
    grid-auto-columns: 145px;
  }

  #homeReviewsTrack > * {
    flex-basis: 24%;
  }

  .home-review-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 14px;
    align-items: start;
  }

  .home-review-illustration {
    display: grid;
    min-height: 260px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    background: linear-gradient(155deg, rgba(208, 225, 249, 0.55), rgba(230, 240, 253, 0.38));
    padding: 16px;
    place-items: center;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .home-review-illustration img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .home-review-form.is-collapsed + .home-review-illustration {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    max-height: 0;
    min-height: 0;
    padding: 0;
    border-width: 0;
    overflow: hidden;
  }
}

@media (max-width: 979px) {
  .home-map-contact-overlay {
    width: min(300px, calc(100% - 28px));
    left: 14px;
    top: 14px;
    padding: 20px 16px 16px;
    gap: 12px;
  }

  .home-map-contact-title {
    font-size: 23px;
  }

  .home-map-contact-row {
    font-size: 0.87rem;
  }
}

@media (max-width: 639px) {
  .home-tail-map-section {
    background: transparent;
  }

  .home-contacts-map-shell {
    border-radius: 15px;
  }

  .home-tail-map-shell {
    border-radius: 20px;
    background: #fff;
  }

  .home-tail-map-shell #custom-dark-map {
    height: 320px;
    min-height: 320px;
    border-radius: 20px;
    background: #fff;
  }

  .home-contacts-map-shell #custom-dark-map {
    height: 500px;
    border-radius: 15px;
    background: #fff;
  }

  .home-map-contact-overlay {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: 12px;
    border-radius: 24px;
    box-shadow: 0 14px 30px rgba(6, 11, 18, 0.38);
    padding: 16px 14px 14px;
  }

  .home-map-contact-subline {
    flex-wrap: wrap;
    gap: 8px;
  }

  .home-map-contact-row {
    font-size: 0.84rem;
    grid-template-columns: 26px 1fr;
    gap: 10px;
  }

  .home-map-contact-icon {
    width: 26px;
    height: 26px;
  }

  .home-map-email-controls {
    grid-template-columns: 1fr;
  }

  .home-map-email-controls .button {
    width: 100%;
    min-width: 0;
  }

  .home-map-contact-title {
    font-size: calc(1.95rem - 15px);
    line-height: 1;
  }

  .home-map-contact-cta {
    min-height: 42px;
    font-size: 0.88rem;
  }
}

@media (min-width: 1600px) {
  #homeReviewsTrack > * {
    flex-basis: 19%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel-track {
    animation: none;
  }
}

@keyframes homeLogoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Keep banner and loyalty blocks tuned only for phone */
@media (max-width: 639px) {
  .home-hero .home-banner-slide {
    height: clamp(200px, 56vw, 280px);
  }

  .home-banner-slide {
    height: clamp(190px, 52vw, 250px);
  }

  .home-advantages-strip {
    gap: 12px;
    padding: 30px 0 0;
  }

  .home-advantage-item {
    flex-basis: 94%;
  }

  .home-advantage-title {
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .home-advantage-text {
    font-size: 0.84rem;
    line-height: 1.4;
  }
}

/* Unified corner radius for home cards, buttons and banners */
body[data-page="home"] {
  --home-unified-radius: 15px;
}

body[data-page="home"] button:not(.product-favorite):not(.product-compare) {
  border-radius: var(--home-unified-radius);
}

body[data-page="home"] .home-banner-carousel,
body[data-page="home"] .home-real-catalog-card,
body[data-page="home"] .home-real-catalog-nav,
body[data-page="home"] .home-real-catalog-more,
body[data-page="home"] .stout-showcase-card,
body[data-page="home"] .plumbing-banner-card,
body[data-page="home"] .home-contacts-map-shell,
body[data-page="home"] .home-contacts-map-shell #custom-dark-map,
body[data-page="home"] .home-map-contact-overlay,
body[data-page="home"] .home-tail-map-shell,
body[data-page="home"] .home-tail-map-shell #custom-dark-map,
body[data-page="home"] .home-contacts-cards-grid,
body[data-page="home"] .home-contact-card,
body[data-page="home"] .home-promo-page-btn,
body[data-page="home"] .home-pro-business-top-banner,
body[data-page="home"] .home-pro-business-side-banner,
body[data-page="home"] .home-pro-business-card,
body[data-page="home"] #homeReviewsTrack .review-card,
body[data-page="home"] .home-review-form,
body[data-page="home"] .home-review-form .button,
body[data-page="home"] .home-map-email-controls .button,
body[data-page="home"] .section-link,
body[data-page="home"] .home-contact-card a,
body[data-page="home"] .home-pro-business-link {
  border-radius: var(--home-unified-radius);
}

body[data-page="home"] .home-tail-map-shell,
body[data-page="home"] .home-tail-map-shell #custom-dark-map {
  border-radius: 28px;
}

body[data-page="home"] .home-contacts-cards-section {
  content-visibility: auto;
  contain-intrinsic-size: 420px;
}

body[data-page="home"] .home-tail-map-section {
  content-visibility: auto;
  contain-intrinsic-size: 560px;
}

body[data-page="home"] .contacts-subscribe-section {
  content-visibility: auto;
  contain-intrinsic-size: 220px;
  --subscribe-corner-drop: 0px;
  --subscribe-footer-overlap: 0px;
  margin-top: 0;
  padding-top: 28px;
  margin-bottom: 0;
  position: static;
  z-index: auto;
}

body[data-page="home"] .contacts-subscribe-strip--home {
  padding: 16px 18px !important;
  border-radius: 20px !important;
  align-items: center !important;
  min-height: 88px;
  overflow: hidden;
}

body[data-page="home"] .contacts-subscribe-strip--home .contacts-subscribe-lead,
body[data-page="home"] .contacts-subscribe-strip--home .contacts-subscribe-form,
body[data-page="home"] .contacts-subscribe-strip--home .contacts-subscribe-submit-inline {
  align-items: center !important;
}

body[data-page="home"] .contacts-subscribe-strip--home .contacts-subscribe-form {
  align-self: center;
}

body[data-page="home"] .contacts-subscribe-strip--home .contacts-subscribe-input,
body[data-page="home"] .contacts-subscribe-strip--home .contacts-subscribe-button {
  height: 38px;
  min-height: 38px;
}

body[data-page="home"] .contacts-subscribe-strip--home::before,
body[data-page="home"] .contacts-subscribe-strip--home::after {
  display: none !important;
}

body[data-page="home"] .home-map-contact-overlay {
  border-radius: 30px;
}

@media (max-width: 639px) {
  body[data-page="home"] .contacts-subscribe-section {
    margin-top: 0;
    padding-top: 20px;
    margin-bottom: 0;
  }

  body[data-page="home"] .contacts-subscribe-strip--home {
    padding: 16px 14px !important;
    border-radius: 18px !important;
    min-height: auto;
  }

  body[data-page="home"] .contacts-subscribe-strip--home .contacts-subscribe-input,
  body[data-page="home"] .contacts-subscribe-strip--home .contacts-subscribe-button {
    height: 36px;
    min-height: 36px;
  }

  body[data-page="home"] .home-tail-map-shell,
  body[data-page="home"] .home-tail-map-shell #custom-dark-map {
    border-radius: 20px;
  }

  body[data-page="home"] .home-map-contact-overlay {
    border-radius: 24px;
  }
}
