@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
}

:root {
  --brd-blue: #2db4f4;
  --brd-blue-hover: #65c9f7;
  --brd-ink: #f5f7f8;
  --brd-muted: #b7bec3;
  --brd-bg: #080a0b;
  --brd-bg-alt: #101416;
  --brd-card: #151a1d;
  --brd-line: rgba(255, 255, 255, 0.12);
  --brd-radius: 16px;
  --brd-container: 1200px;
  --brd-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--brd-bg);
  color: var(--brd-ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--brd-blue);
  color: #042235;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--brd-blue);
  outline-offset: 4px;
}
.site-shell {
  width: min(var(--brd-container), calc(100% - 40px));
  margin-inline: auto;
}
.brd-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 13, 20, 0.94);
  backdrop-filter: blur(14px);
}
.brd-nav {
  width: min(1260px, calc(100% - 64px));
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brd-logo {
  flex: 0 0 auto;
  line-height: 0;
}
.brd-logo img {
  width: 150px;
  height: auto;
}
.brd-nav-desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.1vw, 30px);
}
.brd-nav-desktop > a,
.brd-services-toggle,
.brd-mobile-link,
.brd-mobile-services-toggle {
  color: #edf3f5;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}
.brd-nav-desktop > a:hover,
.brd-services-toggle:hover,
.brd-mobile-link:hover,
.brd-mobile-services-toggle:hover {
  color: var(--brd-blue);
}
.brd-services {
  position: relative;
}
.brd-services-toggle,
.brd-mobile-toggle,
.brd-mobile-services-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.brd-services-toggle::after,
.brd-mobile-services-toggle::after {
  content: "⌄";
  margin-left: 5px;
  color: var(--brd-blue);
}
.brd-services-menu {
  position: absolute;
  top: calc(100% + 19px);
  left: 50%;
  z-index: 10;
  width: 290px;
  padding: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(145, 198, 225, 0.18);
  border-radius: 10px;
  background: #09141d;
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.48);
}
.brd-services-menu a {
  display: block;
  padding: 12px 13px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
}
.brd-services-menu a:hover,
.brd-services-menu a:focus-visible {
  background: rgba(45, 180, 244, 0.1);
}
.brd-services-menu strong,
.brd-services-menu small {
  display: block;
}
.brd-services-menu strong {
  font-size: 0.86rem;
}
.brd-services-menu small {
  margin-top: 3px;
  color: #b8c7d0;
  font-size: 0.76rem;
  line-height: 1.35;
}
.brd-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 7px;
  background: var(--brd-blue);
  color: #052438;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.brd-header-cta:hover {
  background: var(--brd-blue-hover);
  color: #052438;
}
.brd-mobile-toggle,
.brd-mobile-panel,
.brd-mobile-cta {
  display: none;
}
.brd-footer {
  padding: 92px 0 36px;
  background: #050b10;
}
.brd-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 0.8fr;
  align-items: start;
  gap: 62px;
}
.brd-footer-brand img {
  width: 170px;
  height: auto;
}
.brd-footer-copy {
  max-width: 36ch;
  margin: 16px 0 0;
  color: #9eafb9;
  font-size: 0.88rem;
  line-height: 1.65;
}
.brd-footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.brd-footer-column strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.88rem;
}
.brd-footer-column a,
.brd-footer-column span {
  color: #aabac3;
  font-size: 0.84rem;
  text-decoration: none;
}
.brd-footer-column a:hover {
  color: var(--brd-blue);
}
.brd-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #71808a;
  font-size: 0.76rem;
}
.brd-footer-bottom a {
  color: #91a7b3;
  text-decoration: none;
}
.brd-footer-bottom a:hover {
  color: var(--brd-blue);
}
.smart-cleaning-bridge {
  padding: clamp(56px, 6vw, 84px) 0;
  background:
    radial-gradient(circle at 86% 30%, rgba(45, 180, 244, 0.2), transparent 30%),
    linear-gradient(104deg, #06192a, #082b49);
  border-block: 1px solid rgba(45, 180, 244, 0.35);
}
.smart-cleaning-bridge-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
}
.smart-cleaning-bridge-copy {
  max-width: 680px;
}
.smart-cleaning-bridge-kicker {
  margin: 0 0 10px;
  color: var(--brd-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.smart-cleaning-bridge h2 {
  max-width: 22ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.smart-cleaning-bridge p:not(.smart-cleaning-bridge-kicker) {
  max-width: 62ch;
  margin: 16px 0 0;
  color: #c2d2da;
  font-size: 1rem;
}
.smart-cleaning-bridge .brd-promo-button {
  margin-top: 28px;
}
.smart-cleaning-bridge-visual {
  position: relative;
  align-self: stretch;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(122, 202, 241, 0.26);
  border-radius: 10px;
  background: #071622;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}
.smart-cleaning-bridge-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.brd-promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 7px;
  background: var(--brd-blue);
  color: #052438;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.brd-promo-button:hover {
  background: var(--brd-blue-hover);
}
.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 160;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #071d0e;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}
.whatsapp-float.is-suppressed {
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
}
.whatsapp-float svg {
  width: 27px;
  height: 27px;
}
.site-footer {
  border-top: 1px solid var(--brd-line);
  background: #060708;
  padding: 42px 0 96px;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-brand img {
  width: 144px;
  height: auto;
}
.footer-copy {
  color: var(--brd-muted);
  font-size: 0.875rem;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--brd-muted);
  text-decoration: none;
  font-size: 0.875rem;
}
.footer-links a:hover {
  color: var(--brd-blue);
}
@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 28px, var(--brd-container));
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
  .site-footer {
    padding-bottom: 88px;
  }
}
@media (max-width: 900px) {
  .brd-nav {
    width: calc(100% - 32px);
    min-height: 70px;
    gap: 10px;
  }
  .brd-logo img {
    width: 112px;
  }
  .brd-nav-desktop {
    display: none;
  }
  .brd-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
    color: #fff;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 750;
    cursor: pointer;
  }
  .brd-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 11px;
    border-radius: 7px;
    background: var(--brd-blue);
    color: #052438;
    font-size: 0.7rem;
    font-weight: 800;
    text-decoration: none;
  }
  .brd-mobile-panel {
    position: fixed;
    z-index: 210;
    top: 70px;
    right: 16px;
    left: 16px;
    padding: 12px;
    border: 1px solid rgba(145, 198, 225, 0.18);
    border-radius: 10px;
    background: #09141d;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  }
  .brd-mobile-panel:not([hidden]) {
    display: grid;
  }
  .brd-mobile-link,
  .brd-mobile-services-toggle,
  .brd-mobile-services-menu a {
    padding: 10px 12px;
  }
  .brd-mobile-services-toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .brd-mobile-services-menu {
    padding: 4px 0 5px 10px;
  }
  .brd-mobile-services-menu a {
    display: block;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
  }
  .brd-mobile-services-menu small {
    display: block;
    margin-top: 3px;
    color: #b8c7d0;
    font-size: 0.69rem;
    font-weight: 400;
  }
  .brd-mobile-panel .brd-header-cta {
    margin: 8px 0 2px;
  }
  .brd-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
  .brd-footer-about {
    grid-column: 1 / -1;
  }
  .brd-footer-bottom {
    flex-direction: column;
    margin-top: 36px;
  }
  .smart-cleaning-bridge-inner {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .smart-cleaning-bridge-visual {
    width: 100%;
    min-height: 300px;
  }
}
@media (max-width: 440px) {
  .brd-footer-grid {
    grid-template-columns: 1fr;
  }
  .brd-footer-about {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
