/* =========================================================
   HME WEBSITE — COMPLETE FINAL STYLESHEET
   DESKTOP + TABLET + PREMIUM MOBILE-FIRST UX
========================================================= */


/* =========================================================
   ROOT / THEME
========================================================= */

:root {
  --bg: #07090d;
  --bg-2: #0d1117;
  --bg-3: #111722;

  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);

  --text: #ffffff;
  --soft: rgba(255, 255, 255, 0.72);
  --muted: rgba(255, 255, 255, 0.46);

  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);

  --green: #00a651;
  --green-dark: #087c42;
  --red: #e31b23;

  --shadow:
    0 28px 90px rgba(0, 0, 0, 0.44);

  --soft-shadow:
    0 16px 44px rgba(0, 0, 0, 0.18);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --container: 1180px;
  --header-height: 86px;

  --transition: 280ms ease;

  --card: var(--bg-2);
  --border: var(--line);
  --primary: var(--green);
}


html[data-theme="light"] {
  --bg: #f4f6f8;
  --bg-2: #ffffff;
  --bg-3: #eef1f4;

  --panel: rgba(0, 0, 0, 0.045);
  --panel-strong: rgba(0, 0, 0, 0.075);

  --text: #0b1017;
  --soft: rgba(11, 16, 23, 0.72);
  --muted: rgba(11, 16, 23, 0.48);

  --line: rgba(0, 0, 0, 0.11);
  --line-strong: rgba(0, 0, 0, 0.18);

  --shadow:
    0 28px 90px rgba(0, 0, 0, 0.12);

  --soft-shadow:
    0 16px 44px rgba(0, 0, 0, 0.08);

  --card: #ffffff;
}


/* =========================================================
   RESET
========================================================= */

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


html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}


body {
  margin: 0;

  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--bg);
  color: var(--text);

  overflow-x: hidden;

  transition:
    background var(--transition),
    color var(--transition);
}


body.menu-open {
  overflow: hidden;
}


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


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


button,
input,
select,
textarea {
  font: inherit;
}


button {
  border: 0;
  cursor: pointer;
}


::selection {
  color: #ffffff;
  background: var(--green);
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
  width:
    min(
      var(--container),
      calc(100% - 40px)
    );

  margin-inline: auto;
}


.section {
  position: relative;
  padding: 120px 0;
}


.section-head {
  max-width: 790px;
  margin-bottom: 56px;
}


.section-head p,
.section-label {
  margin: 0 0 16px;

  color: var(--green);

  font-size: 12px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 0.13em;
}


.section-head h2,
.care-copy h2,
.contact-copy h2 {
  margin: 0;

  font-size:
    clamp(
      36px,
      4.8vw,
      68px
    );

  line-height: 0.98;
  letter-spacing: -0.065em;
}


.section-head > span,
.care-copy > span,
.contact-copy > span {
  display: block;

  max-width: 720px;

  margin-top: 22px;

  color: var(--soft);

  font-size: 16px;
  line-height: 1.75;
}


/* =========================================================
   CONTEXT LINKS
========================================================= */

.context-link {
  color: inherit;

  font-weight: 700;

  text-decoration: underline;
  text-decoration-color: rgba(0, 166, 81, 0.58);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;

  transition:
    color 280ms ease,
    text-decoration-color 280ms ease;
}


.context-link:hover {
  color: #00a651;
  text-decoration-color: #00a651;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  position: relative;
  isolation: isolate;

  min-height: 48px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 0 20px;

  overflow: hidden;

  border-radius: 11px;

  color: var(--text);

  font-size: 12px;
  font-weight: 800;

  line-height: 1.2;
  letter-spacing: 0.025em;

  white-space: nowrap;

  -webkit-tap-highlight-color: transparent;

  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}


.btn svg {
  width: 16px;
  height: 16px;

  flex: 0 0 auto;

  stroke-width: 2;

  transition: transform 220ms ease;
}


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


.btn:hover svg {
  transform: translate(2px, -1px);
}


.btn:active {
  transform: translateY(0);
}


.btn:focus-visible {
  outline:
    3px solid
    rgba(0, 166, 81, 0.22);

  outline-offset: 3px;
}


.btn-primary {
  color: #ffffff;

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  background:
    linear-gradient(
      135deg,
      #00a651 0%,
      #078344 100%
    );

  box-shadow:
    0 10px 28px
    rgba(0, 166, 81, 0.18);
}


.btn-primary:hover {
  background:
    linear-gradient(
      135deg,
      #08ad59 0%,
      #087c42 100%
    );

  box-shadow:
    0 14px 34px
    rgba(0, 166, 81, 0.24);
}


.btn-secondary {
  color: var(--text);

  border: 1px solid var(--line-strong);

  background:
    rgba(255, 255, 255, 0.045);

  box-shadow:
    inset 0 1px 0
    rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


.btn-secondary:hover {
  border-color:
    rgba(0, 166, 81, 0.42);

  background:
    rgba(0, 166, 81, 0.075);
}


html[data-theme="light"] .btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(11, 16, 23, 0.14);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;

  inset: 0 0 auto 0;

  z-index: 1000;

  height: var(--header-height);

  display: flex;

  align-items: center;

  transition:
    height var(--transition),
    background var(--transition),
    backdrop-filter var(--transition),
    border-color var(--transition);
}


.site-header.scrolled {
  height: 74px;

  background:
    rgba(25, 27, 34, 0.82);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--line);
}


html[data-theme="light"] .site-header.scrolled {
  background:
    rgba(244, 246, 248, 0.88);
}


.nav-container {
  width:
    min(
      1240px,
      calc(100% - 28px)
    );

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-inline: auto;
}


/* =========================================================
   BRAND
========================================================= */

.brand-area {
  display: flex;

  align-items: center;

  gap: 18px;

  flex-shrink: 0;

  margin-left: -12px;
}


.brand {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  min-width: max-content;
}


.brand-logo {
  width: 48px;
  height: 48px;

  object-fit: contain;
}


.brand-text {
  display: flex;

  flex-direction: column;

  line-height: 1;
}


.brand-text small {
  margin-top: 6px;

  color: var(--muted);

  font-size: 11px;
  font-weight: 700;
}


.hme-wordmark {
  display: inline-flex;

  align-items: center;

  font-size: 16px;
  font-weight: 900;

  letter-spacing: 0.08em;
}


.hme-wordmark b {
  font-weight: 900;
}


.h-green {
  color: #00a651;
}


.m-red {
  color: #e31b23;
}


.e-black {
  color: #000000;
}


html[data-theme="dark"] .e-black {
  color: #ffffff;
}


/* =========================================================
   SIRA HEADER
========================================================= */

.header-sira {
  position: relative;

  display: flex;

  align-items: center;

  gap: 9px;

  min-width: max-content;

  padding-left: 18px;
}


.header-sira::before {
  content: "";

  position: absolute;

  left: 0;

  top: 50%;

  width: 1px;
  height: 34px;

  transform: translateY(-50%);

  background:
    linear-gradient(
      180deg,
      transparent,
      var(--line-strong),
      transparent
    );
}


.header-sira span {
  color: var(--text);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.08em;

  white-space: nowrap;
}


.header-sira img {
  width: 70px;
  height: auto;

  object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.desktop-nav {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-left: auto;
}


.desktop-nav a {
  position: relative;

  color: var(--soft);

  font-size: 13px;
  font-weight: 800;

  opacity: 0.78;

  transition:
    color var(--transition),
    opacity var(--transition);
}


.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
  opacity: 1;
}


.desktop-nav a.active::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -9px;

  width: 4px;
  height: 4px;

  transform: translateX(-50%);

  border-radius: 50%;

  background: var(--green);
}


.nav-actions {
  display: flex;

  align-items: center;

  gap: 12px;

  flex-shrink: 0;
}


.theme-toggle,
.menu-toggle {
  position: relative;

  width: 44px;
  height: 44px;

  display: grid;

  place-items: center;

  padding: 0;

  border-radius: 10px;

  color: var(--text);

  background: var(--panel);

  border: 1px solid var(--line);
}


.theme-toggle svg {
  position: absolute;

  width: 18px;
  height: 18px;

  transition:
    opacity var(--transition),
    transform var(--transition);
}


html[data-theme="dark"] .sun-icon {
  opacity: 1;
}


html[data-theme="dark"] .moon-icon {
  opacity: 0;

  transform:
    rotate(80deg)
    scale(0.7);
}


html[data-theme="light"] .sun-icon {
  opacity: 0;

  transform:
    rotate(-80deg)
    scale(0.7);
}


html[data-theme="light"] .moon-icon {
  opacity: 1;
}


.nav-cta {
  min-height: 44px;

  display: inline-flex;

  align-items: center;

  padding: 0 17px;

  border-radius: 10px;

  color: #ffffff;

  background: var(--green);

  font-size: 13px;
  font-weight: 900;

  transition:
    transform var(--transition),
    background var(--transition);
}


.nav-cta:hover {
  transform: translateY(-2px);

  background: var(--green-dark);
}


.menu-toggle {
  display: none;
}


.menu-toggle span {
  position: absolute;

  left: 12px;
  right: 12px;

  height: 2px;

  border-radius: 999px;

  background: var(--text);

  transition:
    top var(--transition),
    transform var(--transition);
}


.menu-toggle span:first-child {
  top: 16px;
}


.menu-toggle span:last-child {
  top: 26px;
}


.menu-toggle.active span:first-child {
  top: 21px;

  transform: rotate(45deg);
}


.menu-toggle.active span:last-child {
  top: 21px;

  transform: rotate(-45deg);
}


.mobile-menu {
  display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  padding-top: var(--header-height);

  overflow: hidden;

  background: var(--bg);
}


.hero-bg {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(0, 166, 81, 0.19),
      transparent 34%
    ),
    radial-gradient(
      circle at 82% 20%,
      rgba(227, 27, 35, 0.11),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #07090d 0%,
      #0d1117 55%,
      #07090d 100%
    );
}


html[data-theme="light"] .hero-bg {
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(0, 166, 81, 0.13),
      transparent 34%
    ),
    radial-gradient(
      circle at 82% 20%,
      rgba(227, 27, 35, 0.08),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #f4f6f8 0%,
      #ffffff 55%,
      #eef1f4 100%
    );
}


.hero-grid {
  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(
      var(--line) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      var(--line) 1px,
      transparent 1px
    );

  background-size: 72px 72px;

  opacity: 0.24;
}


.hero-noise {
  position: absolute;

  inset: 0;

  opacity: 0.03;

  background-image:
    radial-gradient(
      circle,
      white 1px,
      transparent 1px
    );

  background-size: 4px 4px;
}


.hero::after {
  content: "";

  position: absolute;

  inset: auto 0 0;

  height: 24%;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent,
      var(--bg)
    );
}


.hero-container {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    0.92fr 1.08fr;

  gap: 58px;

  align-items: center;

  padding: 86px 0 70px;
}


.status-line {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  min-height: 34px;

  padding: 0 14px;

  border-radius: 999px;

  border: 1px solid var(--line);

  background: var(--panel);

  backdrop-filter: blur(14px);
}


.live-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 20px
    rgba(0, 166, 81, 0.9);
}


.status-line p {
  margin: 0;

  color: var(--soft);

  font-size: 12px;
  font-weight: 800;
}


.hero-copy h1 {
  max-width: 790px;

  margin: 24px 0 0;

  font-size:
    clamp(
      44px,
      4.8vw,
      68px
    );

  line-height: 1;

  letter-spacing: -0.04em;
}


.hero-copy h1 span {
  display: block;

  color: var(--green);
}


.hero-description {
  max-width: 670px;

  margin: 26px 0 0;

  color: var(--soft);

  font-size: 17px;
  line-height: 1.75;
}


.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}


/* =========================================================
   HERO STATS
========================================================= */

.command-stats {
  margin-top: 44px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  overflow: hidden;

  border: 1px solid var(--line);

  background: var(--panel);

  backdrop-filter: blur(14px);

  border-radius: var(--radius-lg);
}


.command-stats div {
  padding: 19px;

  border-right: 1px solid var(--line);
}


.command-stats div:last-child {
  border-right: 0;
}


.command-stats strong {
  display: block;

  font-size: 26px;

  letter-spacing: -0.04em;
}


.command-stats span {
  display: block;

  margin-top: 5px;

  color: var(--muted);

  font-size: 12px;
  font-weight: 800;
}


/* =========================================================
   COMMAND CARD
========================================================= */

.command-card {
  position: relative;

  overflow: hidden;

  border: 1px solid var(--line-strong);

  border-radius: var(--radius-xl);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.095),
      rgba(255, 255, 255, 0.045)
    );

  backdrop-filter: blur(22px);

  box-shadow: var(--shadow);
}


html[data-theme="light"] .command-card {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.7)
    );
}


.command-top {
  position: relative;

  z-index: 10;

  min-height: 88px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 18px;

  padding: 20px;

  border-bottom: 1px solid var(--line);
}


.command-top span {
  color: var(--muted);

  font-size: 11px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 0.12em;
}


.command-top strong {
  display: block;

  margin-top: 7px;

  font-size: 21px;
  line-height: 1.2;

  letter-spacing: -0.035em;
}


.scan-state {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  min-width: max-content;

  color: var(--green);

  font-size: 11px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.scan-state span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--green);

  box-shadow: 0 0 18px var(--green);
}


/* =========================================================
   BUILDING SCANNER
========================================================= */

.building-scanner {
  position: relative;

  width: 100%;
  height: 440px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(0, 166, 81, 0.13),
      transparent 38%
    ),
    rgba(0, 0, 0, 0.15);
}


.scan-line {
  position: absolute;

  left: 0;
  right: 0;

  z-index: 2;

  height: 100px;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(0, 166, 81, 0.22),
      transparent
    );

  animation:
    scanMove 4.2s
    infinite linear;
}


@keyframes scanMove {
  from {
    transform:
      translateY(-120px);
  }

  to {
    transform:
      translateY(470px);
  }
}


.building-shell {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 265px;
  height: 315px;

  transform:
    translate(-50%, -50%);

  border: 1px solid var(--line-strong);

  border-radius: 20px 20px 6px 6px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );
}


.floor {
  position: relative;

  height: 25%;

  border-bottom: 1px solid var(--line);

  background-image:
    linear-gradient(
      90deg,
      transparent 0 16%,
      rgba(255,255,255,.11) 16% 19%,
      transparent 19% 36%,
      rgba(255,255,255,.11) 36% 39%,
      transparent 39% 58%,
      rgba(255,255,255,.11) 58% 61%,
      transparent 61% 80%,
      rgba(255,255,255,.11) 80% 83%,
      transparent 83%
    );
}


.entrance {
  position: absolute;

  left: 50%;
  bottom: 0;

  width: 56px;
  height: 62px;

  transform: translateX(-50%);

  border: 1px solid var(--line-strong);
  border-bottom: 0;

  border-radius: 12px 12px 0 0;

  background:
    rgba(0, 166, 81, 0.1);
}


.building-roof-detail {
  position: absolute;

  left: 50%;
  top: -17px;

  width: 90px;
  height: 16px;

  transform: translateX(-50%);

  border: 1px solid var(--line);
  border-bottom: 0;

  opacity: 0.72;
}


.building-zone {
  position: absolute;

  pointer-events: none;

  border:
    1px solid
    rgba(0, 166, 81, 0.08);

  background:
    rgba(0, 166, 81, 0.025);
}


.building-zone-upper {
  top: 11%;
  left: 9%;

  width: 29%;
  height: 19%;
}


.building-zone-middle {
  top: 46%;
  right: 8%;

  width: 27%;
  height: 20%;
}


/* =========================================================
   SYSTEM NODES
========================================================= */

.system-node {
  position: absolute;

  z-index: 6;

  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  padding: 0;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  color: var(--text);

  background:
    rgba(7, 9, 13, 0.78);

  border: 1px solid var(--line-strong);

  backdrop-filter: blur(14px);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}


.system-node svg {
  width: 18px;
  height: 18px;

  color: var(--green);
}


.system-node:hover,
.system-node:focus-visible,
.system-node.active {
  transform:
    translate(-50%, -50%)
    scale(1.08);

  border-color:
    rgba(0, 166, 81, 0.72);

  box-shadow:
    0 0 0 7px rgba(0, 166, 81, 0.08),
    0 0 34px rgba(0, 166, 81, 0.28);
}


.node-cctv {
  left: 17%;
  top: 21%;
}


.node-alarm {
  left: 16%;
  top: 47%;
}


.node-wifi {
  left: 50%;
  top: 9%;
}


.node-iptv {
  left: 31%;
  top: 39%;
}


.node-automation {
  left: 61%;
  top: 29%;
}


.node-telephone {
  left: 76%;
  top: 52%;
}


.node-network {
  left: 82%;
  top: 75%;
}


.node-access {
  left: 45%;
  top: 83%;
}


.node-intercom {
  left: 59%;
  top: 76%;
}


.node-fiber {
  left: 20%;
  top: 82%;
}


/* =========================================================
   SCANNER HME
========================================================= */

.scanner-hme {
  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 3;

  display: flex;

  align-items: center;
  justify-content: center;

  transform:
    translate(-50%, -50%);

  font-size:
    clamp(
      34px,
      5vw,
      64px
    );

  font-weight: 900;

  letter-spacing: 0.08em;

  opacity: 0;

  pointer-events: none;

  animation:
    scannerHMEReveal 4.2s
    infinite linear;
}


.scanner-h {
  color: #00a651;
}


.scanner-m {
  color: #e31b23;
}


.scanner-e {
  color: #ffffff;
}


html[data-theme="light"] .scanner-e {
  color: #000000;
}


@keyframes scannerHMEReveal {
  0%,
  38% {
    opacity: 0;
  }

  49% {
    opacity: 0.58;
  }

  50% {
    opacity: 0.78;
  }

  59% {
    opacity: 0.12;
  }

  64%,
  100% {
    opacity: 0;
  }
}


/* =========================================================
   SCANNER PANEL
========================================================= */

.scanner-panel {
  position: relative;

  z-index: 10;

  width: 100%;

  padding: 22px;

  border-top: 1px solid var(--line);

  background:
    rgba(7, 9, 13, 0.24);
}


.scanner-category-row {
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-wrap: wrap;

  gap: 12px;
}


.scanner-category-row > p {
  margin: 0;

  color: var(--green);

  font-size: 12px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 0.1em;
}


.scanner-panel h3,
#scannerHeading {
  margin: 10px 0 0;

  font-size: 24px;

  line-height: 1.15;

  letter-spacing: -0.04em;
}


.scanner-panel > span,
#scannerText {
  display: block;

  margin-top: 12px;

  color: var(--soft);

  font-size: 14px;
  line-height: 1.7;
}


.scanner-sira {
  display: none;

  align-items: center;

  gap: 8px;
}


.scanner-sira.show {
  display: flex;
}


.scanner-sira > span {
  color: var(--muted);

  font-size: 8px;
  font-weight: 900;

  text-transform: uppercase;
}


.scanner-sira img {
  width: 100px;
}


.scanner-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 18px;
}


.scanner-tags small {
  min-height: 32px;

  display: inline-flex;

  align-items: center;

  padding: 7px 11px;

  border-radius: 999px;

  color: var(--text);

  background:
    rgba(0, 166, 81, 0.12);

  border:
    1px solid
    rgba(0, 166, 81, 0.24);

  font-size: 11px;
  font-weight: 900;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
  overflow: hidden;
}


.about-container {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 52px;

  align-items: center;
}


.about-image {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  border: 1px solid var(--border);

  background: var(--card);

  box-shadow: var(--shadow);
}


.about-image img {
  width: 100%;
  height: 560px;

  object-fit: cover;
  object-position: center 42%;

  transform: scale(0.97);

  border-radius: 26px;
}


.about-image::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 58%,
      rgba(0, 0, 0, 0.48)
    );
}


.about-content h2 {
  margin: 12px 0 22px;

  font-size:
    clamp(
      2rem,
      4vw,
      4rem
    );

  line-height: 0.95;

  letter-spacing: -0.06em;
}


.about-content > p {
  margin-bottom: 18px;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.8;
}


.why-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;

  margin-top: 28px;
}


.why-card {
  padding: 22px;

  border-radius: 22px;

  background: var(--card);

  border: 1px solid var(--border);

  box-shadow: var(--soft-shadow);
}


.why-card svg,
.about-values svg {
  width: 24px;
  height: 24px;

  color: var(--green);

  margin-bottom: 14px;
}


.why-card h3,
.about-values h3 {
  margin: 0 0 10px;

  font-size: 17px;
}


.why-card p,
.about-values p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}


.about-values {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;

  margin-top: 26px;
}


.about-values > div {
  padding: 24px;

  border-radius: 24px;

  background: var(--card);

  border: 1px solid var(--border);

  box-shadow: var(--soft-shadow);
}


/* =========================================================
   SYSTEMS
========================================================= */

.systems {
  background:
    linear-gradient(
      180deg,
      var(--bg),
      var(--bg-2),
      var(--bg)
    );
}


.systems-carousel-head {
  max-width: none;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;
}


.systems-carousel-head > div:first-child {
  max-width: 790px;
}


.systems-carousel-controls {
  display: flex;

  gap: 10px;
}


.systems-arrow,
.sector-arrow {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  border-radius: 12px;

  color: var(--text);

  background: var(--panel);

  border: 1px solid var(--line);
}


.systems-arrow:hover,
.sector-arrow:hover {
  color: #ffffff;

  background: var(--green);

  border-color: var(--green);
}


.systems-carousel,
.systems-viewport {
  width: 100%;
}


.systems-viewport {
  overflow: hidden;
}


.systems-track {
  display: flex;

  gap: 18px;

  transition:
    transform 450ms
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.systems-track .system-card {
  flex:
    0 0
    calc(
      (100% - 36px) / 3
    );
}


.system-card {
  min-width: 0;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  border-radius: var(--radius-lg);

  border: 1px solid var(--line);

  background: var(--bg-2);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}


.system-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(0, 166, 81, 0.3);

  box-shadow:
    0 20px 55px
    rgba(0, 0, 0, 0.24);
}


.system-image {
  position: relative;

  height: 235px;

  overflow: hidden;

  background: #111111;
}


.system-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 500ms ease;
}


.system-card:hover .system-image img {
  transform: scale(1.035);
}


.system-content {
  min-width: 0;

  display: flex;

  flex: 1;
  flex-direction: column;

  padding: 24px;
}


.system-number {
  color: var(--green);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.12em;
}


.system-content h3 {
  margin: 14px 0 0;

  font-size: 24px;

  line-height: 1.2;

  letter-spacing: -0.04em;
}


.system-content p {
  margin: 13px 0 0;

  color: var(--soft);

  font-size: 14px;
  line-height: 1.65;
}


.system-content ul {
  margin: 20px 0 22px;
  padding: 0;

  display: grid;

  gap: 9px;

  list-style: none;
}


.system-content li {
  color: var(--muted);

  font-size: 13px;
  font-weight: 700;
}


.system-content li::before {
  content: "↳ ";

  color: var(--green);
}


.system-service-link {
  width: 100%;

  min-height: 46px;

  margin-top: auto;

  padding: 0 15px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 12px;

  border-radius: 10px;

  background: transparent;

  border: 1px solid var(--line);

  font-size: 12px;
}


.systems-carousel-bottom {
  display: flex;

  justify-content: center;

  margin-top: 24px;
}


.systems-dots,
.sector-dots {
  display: flex;

  align-items: center;

  gap: 8px;
}


.systems-dot,
.sector-dot {
  width: 8px;
  height: 8px;

  padding: 0;

  border-radius: 999px;

  background: var(--line-strong);
}


.systems-dot.active,
.sector-dot.active {
  width: 28px;

  background: var(--green);
}


/* =========================================================
   CLIENTS
========================================================= */

.clients {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(0, 166, 81, 0.075),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      var(--bg),
      var(--bg-2),
      var(--bg)
    );
}


.clients-head {
  max-width: 860px;

  margin-bottom: 42px;
}


.featured-experience {
  overflow: hidden;

  border:
    1px solid
    var(--line-strong);

  border-radius:
    var(--radius-xl);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.022)
    );

  box-shadow: var(--shadow);
}


.featured-experience-head {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(260px, 0.8fr);

  gap: 34px;

  align-items: end;

  padding: 30px 32px 26px;

  border-bottom: 1px solid var(--line);
}


.featured-experience-head > div > span,
.clients-record-head > div > span {
  display: block;

  color: var(--green);

  font-size: 10px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.13em;
}


.featured-experience-head h3,
.clients-record-head h3 {
  margin: 9px 0 0;

  font-size:
    clamp(
      24px,
      3vw,
      38px
    );

  line-height: 1.02;

  letter-spacing: -0.045em;
}


.featured-experience-head > p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.7;
}


.featured-clients-grid {
  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );
}


.featured-client {
  min-height: 176px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  gap: 20px;

  padding: 24px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


.featured-client:nth-child(4n) {
  border-right: 0;
}


.featured-logo-wrap {
  min-height: 78px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 8px;

  border-radius: 12px;
}


html[data-theme="dark"] .featured-logo-wrap {
  background:
    rgba(255, 255, 255, 0.94);
}


.featured-logo-wrap img {
  width: auto;

  max-width: 160px;
  max-height: 62px;

  object-fit: contain;
}


.featured-client-copy {
  text-align: center;
}


.featured-client-copy small {
  display: block;

  margin-bottom: 6px;

  color: var(--muted);

  font-size: 8px;
  font-weight: 900;

  text-transform: uppercase;
}


.featured-client-copy strong {
  display: block;

  font-size: 17px;
}


.featured-proof {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top: 1px solid var(--line);
}


.featured-proof > div {
  padding: 22px 26px;

  border-right: 1px solid var(--line);
}


.featured-proof > div:last-child {
  border-right: 0;
}


.featured-proof span {
  display: block;

  color: var(--muted);

  font-size: 8px;
  font-weight: 900;

  text-transform: uppercase;
}


.featured-proof strong {
  display: block;

  margin-top: 7px;

  font-size: 25px;
}


.featured-proof small {
  display: block;

  margin-top: 6px;

  color: var(--muted);

  font-size: 10px;
}


/* =========================================================
   CLIENT RECORD
========================================================= */

.clients-record {
  margin-top: 26px;

  overflow: hidden;

  border: 1px solid var(--line);

  border-radius: var(--radius-xl);

  background:
    rgba(255, 255, 255, 0.018);
}


.clients-record-head {
  padding: 28px 30px 24px;

  border-bottom: 1px solid var(--line);
}


.clients-tabs {
  display: flex;

  align-items: center;

  gap: 6px;

  padding: 10px 12px;

  overflow-x: auto;

  border-bottom: 1px solid var(--line);

  scrollbar-width: none;
}


.clients-tabs::-webkit-scrollbar {
  display: none;
}


.client-tab {
  min-height: 40px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  flex: 0 0 auto;

  padding: 0 15px;

  border-radius: 9px;

  color: var(--muted);

  background: transparent;

  font-size: 10px;
  font-weight: 900;

  text-transform: uppercase;

  white-space: nowrap;
}


.client-tab::before {
  content: "";

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--line-strong);
}


.client-tab.active {
  color: var(--text);

  background:
    rgba(0, 166, 81, 0.06);

  border:
    1px solid
    rgba(0, 166, 81, 0.2);
}


.client-tab.active::before {
  background: var(--green);
}


.client-category-panel {
  padding: 8px 30px;
}


.client-category-panel[hidden] {
  display: none !important;
}


.client-group {
  display: grid;

  grid-template-columns:
    220px minmax(0, 1fr);

  gap: 26px;

  padding: 24px 0;

  border-bottom: 1px solid var(--line);
}


.client-group:last-child {
  border-bottom: 0;
}


.client-group-heading {
  display: flex;

  align-items: flex-start;

  gap: 10px;
}


.client-group-heading svg {
  width: 17px;
  height: 17px;

  color: var(--green);
}


.client-group-heading h4 {
  margin: 0;

  font-size: 12px;
  font-weight: 900;

  text-transform: uppercase;
}


.client-name-grid {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 9px 18px;
}


.client-name-grid span {
  position: relative;

  padding:
    8px 10px 8px 20px;

  color: var(--muted);

  border-radius: 9px;

  font-size: 12px;
  font-weight: 700;

  line-height: 1.45;
}


.client-name-grid span::before {
  content: "";

  position: absolute;

  left: 8px;
  top: 50%;

  width: 5px;
  height: 5px;

  transform: translateY(-50%);

  border-radius: 50%;

  background: var(--line-strong);
}


.clients-proof {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 28px;

  padding: 26px 30px;

  border-top: 1px solid var(--line);
}


.clients-proof > div > span {
  color: var(--muted);

  font-size: 8px;
  font-weight: 900;

  text-transform: uppercase;
}


.clients-proof strong {
  display: block;

  margin-top: 8px;

  font-size: 22px;
}


.clients-proof p {
  max-width: 620px;

  margin: 8px 0 0;

  color: var(--muted);

  font-size: 11px;
  line-height: 1.6;
}


/* =========================================================
   CARE
========================================================= */

.care {
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(227, 27, 35, 0.08),
      transparent 32%
    ),
    var(--bg);
}


.care-container {
  display: grid;

  grid-template-columns:
    0.95fr 1.05fr;

  gap: 58px;

  align-items: center;
}


.care-panel {
  padding: 18px;

  border-radius: var(--radius-xl);

  border: 1px solid var(--line);

  background: var(--panel);

  box-shadow: var(--shadow);
}


.care-image {
  overflow: hidden;

  margin-bottom: 18px;

  border-radius: 24px;
}


.care-image img {
  width: 100%;
  height: 300px;

  object-fit: cover;
}


.care-screen {
  overflow: hidden;

  border-radius: 20px;

  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(0, 166, 81, 0.18),
      transparent 38%
    ),
    var(--bg-2);

  border: 1px solid var(--line);
}


.care-screen-top {
  padding: 24px;

  border-bottom: 1px solid var(--line);
}


.care-screen-top span {
  color: var(--green);

  font-size: 12px;
  font-weight: 900;

  text-transform: uppercase;
}


.care-screen-top strong {
  display: block;

  margin-top: 9px;

  font-size: 28px;
}


.health-list div {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 18px;

  padding: 20px 24px;

  border-bottom: 1px solid var(--line);
}


.health-list span {
  color: var(--soft);

  font-weight: 800;
}


.health-list strong {
  color: var(--green);
}


.care-features {
  margin-top: 34px;

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 14px;
}


.care-features div {
  padding: 22px;

  border-radius: 18px;

  border: 1px solid var(--line);

  background: var(--panel);
}


.care-features svg {
  width: 24px;
  height: 24px;

  color: var(--green);
}


.care-features p {
  margin: 24px 0 0;

  color: var(--soft);

  font-size: 14px;
  font-weight: 700;

  line-height: 1.65;
}


/* =========================================================
   SECTORS
========================================================= */

.sector-head {
  max-width: none;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;
}


.sector-head > div:first-child {
  max-width: 790px;
}


.sector-controls {
  display: flex;

  gap: 10px;
}


.sector-carousel,
.sector-viewport {
  width: 100%;
}


.sector-viewport {
  overflow: hidden;
}


.sector-track {
  display: flex;

  gap: 18px;

  transition:
    transform 450ms
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.sector-track .sector-card {
  flex:
    0 0
    calc(
      (100% - 18px) / 2
    );
}


.sector-card {
  overflow: hidden;

  border-radius: var(--radius-lg);

  border: 1px solid var(--line);

  background: var(--bg-2);
}


.sector-card img {
  width: 100%;
  height: 240px;

  object-fit: cover;
}


.sector-card > div {
  padding: 23px;
}


.sector-card span {
  color: var(--green);

  font-size: 11px;
  font-weight: 900;

  text-transform: uppercase;
}


.sector-card h3 {
  margin: 10px 0 0;

  font-size: 23px;
}


.sector-card p {
  margin: 11px 0 0;

  color: var(--soft);

  font-size: 13px;
  line-height: 1.65;
}


.sector-navigation {
  display: flex;

  align-items: center;
  justify-content: center;

  margin-top: 24px;
}


.sector-mobile-controls {
  display: none;
}


/* =========================================================
   REVIEWS
========================================================= */

.customer-reviews {
  position: relative;

  padding: 96px 0 84px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(0, 166, 81, 0.07),
      transparent 30%
    ),
    var(--bg);
}


.customer-reviews-head {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: end;

  gap: 48px;

  margin-bottom: 44px;
}


.customer-reviews-head h2 {
  margin: 0;

  font-size:
    clamp(
      36px,
      4.5vw,
      62px
    );

  line-height: 0.98;

  letter-spacing: -0.058em;
}


.customer-reviews-head
> div:first-child
> span {
  display: block;

  margin-top: 18px;

  color: var(--soft);

  font-size: 15px;
  line-height: 1.72;
}


.google-rating-summary {
  min-width: 255px;

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 20px 22px;

  border-radius: 18px;

  border: 1px solid var(--line-strong);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    );
}


.google-rating-score {
  font-size: 42px;
  font-weight: 900;
}


.google-rating-stars,
.customer-review-stars {
  display: flex;

  gap: 3px;

  color: #fbbc04;
}


.customer-reviews-carousel {
  width: 100%;

  display: grid;

  grid-template-columns:
    48px minmax(0, 1fr) 48px;

  align-items: center;

  gap: 14px;
}


.customer-reviews-viewport {
  width: 100%;

  overflow: hidden;

  padding: 10px 3px 20px;
}


.customer-reviews-track {
  display: flex;

  gap: 18px;

  transition:
    transform 500ms
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.customer-review-card {
  position: relative;

  flex:
    0 0
    calc(
      (100% - 36px) / 3
    );

  min-height: 305px;

  display: flex;

  flex-direction: column;

  padding: 24px;

  overflow: hidden;

  border-radius: 20px;

  border: 1px solid var(--line);

  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );
}


.customer-review-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 14px;
}


.customer-review-top > span {
  padding: 6px 9px;

  border-radius: 999px;

  color: var(--muted);

  border: 1px solid var(--line);

  font-size: 8px;
  font-weight: 900;

  text-transform: uppercase;
}


.customer-review-card blockquote {
  flex: 1;

  margin: 24px 0 28px;

  font-size: 16px;
  font-weight: 650;

  line-height: 1.65;
}


.customer-review-author {
  display: flex;

  align-items: center;

  gap: 12px;

  padding-top: 17px;

  border-top: 1px solid var(--line);
}


.customer-review-avatar {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--green),
      var(--green-dark)
    );

  font-weight: 900;
}


.customer-review-author strong {
  display: block;

  font-size: 13px;
}


.customer-review-author span {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: 9px;
}


.customer-review-arrow {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  border-radius: 14px;

  color: var(--text);

  background: var(--panel);

  border: 1px solid var(--line);
}


.customer-reviews-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 22px;

  margin-top: 18px;
}


.customer-review-dots {
  display: flex;

  gap: 7px;
}


.customer-review-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border-radius: 999px;

  background: var(--line-strong);
}


.customer-review-dot.active {
  width: 26px;

  background: var(--green);
}


.customer-google-link {
  min-height: 43px;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 0 14px;

  border-radius: 10px;

  color: var(--soft);

  border: 1px solid var(--line);

  background: var(--panel);

  font-size: 10px;
  font-weight: 900;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-container {
  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 52px;

  align-items: start;
}


.contact-methods {
  display: grid;

  gap: 12px;

  margin-top: 34px;
}


.contact-methods a {
  min-height: 58px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 0 16px;

  border-radius: 14px;

  border: 1px solid var(--line);

  background: var(--panel);

  color: var(--soft);

  font-size: 14px;
  font-weight: 800;
}


.contact-methods svg {
  width: 19px;
  height: 19px;

  color: var(--green);
}


.location-card {
  margin-top: 28px;

  padding: 22px;

  border-radius: 24px;

  background: var(--card);

  border: 1px solid var(--border);

  box-shadow: var(--soft-shadow);
}


.location-card > div:first-child {
  display: flex;

  align-items: flex-start;

  gap: 14px;
}


.location-card svg {
  width: 24px;
  height: 24px;

  color: var(--green);
}


.location-card h3 {
  margin: 0 0 8px;

  font-size: 18px;
}


.location-card p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}


.location-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 18px;
}


.location-actions a {
  padding: 12px 16px;

  border-radius: 999px;

  background: var(--text);

  color: var(--bg);

  font-size: 13px;
  font-weight: 800;
}


.location-actions a:nth-child(2) {
  background: transparent;

  color: var(--text);

  border: 1px solid var(--border);
}


.location-actions a:nth-child(3) {
  background:
    rgba(0, 166, 81, 0.12);

  color: var(--text);

  border:
    1px solid
    rgba(0, 166, 81, 0.28);
}


/* =========================================================
   FORM
========================================================= */

.smart-form {
  position: relative;

  padding: 28px;

  border-radius: var(--radius-xl);

  border: 1px solid var(--line-strong);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.035)
    );

  box-shadow: var(--shadow);
}


.form-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 14px;
}


.form-group {
  display: grid;

  gap: 8px;

  margin-bottom: 16px;
}


.form-group > label {
  color: var(--soft);

  font-size: 13px;
  font-weight: 900;
}


.form-group
input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%;

  min-height: 52px;

  padding: 0 15px;

  border-radius: 12px;

  border: 1px solid var(--line);

  outline: none;

  color: var(--text);

  background:
    rgba(255, 255, 255, 0.045);
}


.form-group textarea {
  min-height: 130px;

  padding-top: 14px;

  resize: vertical;
}


.form-submit {
  width: 100%;
}


.form-note {
  margin: 14px 0 0;

  color: var(--muted);

  font-size: 12px;
}


.sira-approval-group {
  display: none;
}


.sira-approval-group.show {
  display: grid;
}


/* =========================================================
   MULTISELECT
========================================================= */

.system-multiselect {
  position: relative;

  width: 100%;

  z-index: 40;
}


.system-multiselect-trigger {
  width: 100%;

  min-height: 52px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 14px;

  padding: 0 15px;

  border-radius: 12px;

  border: 1px solid var(--line);

  color: var(--soft);

  background:
    rgba(255, 255, 255, 0.045);

  text-align: left;
}


.system-multiselect-menu {
  position: absolute;

  top: calc(100% + 7px);

  left: 0;
  right: 0;

  z-index: 300;

  display: none;

  max-height: 310px;

  overflow-y: auto;

  padding: 8px;

  border-radius: 14px;

  border: 1px solid var(--line-strong);

  background:
    rgba(13, 17, 23, 0.99);

  box-shadow:
    0 20px 55px
    rgba(0, 0, 0, 0.42);
}


.system-multiselect.open
.system-multiselect-menu {
  display: block;
}


.system-option {
  min-height: 44px;

  display: flex;

  align-items: center;

  gap: 11px;

  padding: 9px 11px;

  border-radius: 9px;
}


.system-option span {
  color: var(--soft);

  font-size: 13px;
  font-weight: 700;
}


/* =========================================================
   TABBY
========================================================= */

.tabby-note {
  margin-top: 14px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 13px 14px;

  border-radius: 12px;

  border: 1px solid var(--line);

  background: var(--panel);
}


.tabby-mark {
  padding: 7px 10px;

  border-radius: 8px;

  background: #3bf7c4;

  color: #111111;

  font-size: 13px;
  font-weight: 900;
}


.tabby-note strong {
  display: block;

  font-size: 12px;
}


.tabby-note small {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: 10px;
}


/* =========================================================
   MAP
========================================================= */

.map-embed {
  margin-top: 42px;

  overflow: hidden;

  border-radius: 30px;

  border: 1px solid var(--border);

  background: var(--card);

  box-shadow: var(--shadow);
}


.map-embed iframe {
  display: block;

  width: 100%;

  filter:
    grayscale(1)
    contrast(1.05);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 64px 0 26px;

  border-top: 1px solid var(--line);

  background:
    rgba(255, 253, 253, 0.06);
}


.footer-container {
  display: grid;

  grid-template-columns:
    0.9fr 1.35fr;

  gap: 60px;
}


.footer-brand p {
  max-width: 380px;

  margin: 20px 0 0;

  color: var(--soft);

  font-size: 14px;
  line-height: 1.7;
}


.footer-links {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 26px;
}


.footer-links h3 {
  margin: 0 0 18px;

  font-size: 14px;
}


.footer-links a {
  display: block;

  margin-bottom: 12px;

  color: var(--muted);

  font-size: 13px;
  font-weight: 800;
}


.footer-bottom {
  margin-top: 54px;

  padding-top: 22px;

  display: flex;

  justify-content: space-between;

  gap: 18px;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 12px;
  font-weight: 800;
}


.footer-socials {
  display: flex;

  gap: 9px;

  margin-top: 20px;
}


.footer-socials a {
  width: 40px;
  height: 40px;

  display: grid;

  place-items: center;

  border-radius: 10px;

  color: var(--muted);

  border: 1px solid var(--line);
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {
  position: fixed;

  right: 24px;
  bottom: 24px;

  z-index: 900;

  width: 58px;
  height: 58px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #25d366,
      #128c7e
    );

  box-shadow:
    0 18px 48px
    rgba(37, 211, 102, 0.28);
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(26px);

  transition:
    opacity 680ms ease,
    transform 680ms ease;
}


.reveal.show,
.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}


.delay-1 {
  transition-delay: 120ms;
}


/* =========================================================
   TABLET NAVIGATION
========================================================= */

@media (max-width: 1080px) {

  .desktop-nav,
  .nav-cta {
    display: none;
  }


  .menu-toggle {
    display: grid;
  }


  .mobile-menu {
    position: fixed;

    inset:
      var(--header-height)
      20px
      auto
      20px;

    z-index: 999;

    display: grid;

    gap: 6px;

    padding: 16px;

    border-radius: 18px;

    border: 1px solid var(--line);

    background:
      rgba(7, 9, 13, 0.95);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: var(--shadow);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
      translateY(-10px);

    transition:
      opacity var(--transition),
      transform var(--transition);
  }


  html[data-theme="light"]
  .mobile-menu {
    background:
      rgba(244, 246, 248, 0.97);
  }


  .mobile-menu.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
      translateY(0);
  }


  .mobile-menu a {
    padding: 14px;

    border-radius: 12px;

    color: var(--soft);

    font-size: 14px;
    font-weight: 900;
  }


  .mobile-cta {
    color: #ffffff !important;

    background:
      var(--green) !important;
  }


  .hero-container,
  .care-container,
  .contact-container,
  .footer-container {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

  .about-container {
    grid-template-columns: 1fr;
  }


  .about-image img {
    height: 430px;
  }


  .systems-track
  .system-card {
    flex:
      0 0
      calc(
        (100% - 18px) / 2
      );
  }


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


  .client-group {
    grid-template-columns:
      170px
      minmax(0, 1fr);
  }


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


  .customer-reviews-head {
    grid-template-columns: 1fr;
  }


  .customer-review-card {
    flex:
      0 0
      calc(
        (100% - 18px) / 2
      );
  }

}


/* =========================================================
   PREMIUM MOBILE
========================================================= */

@media (max-width: 700px) {

  :root {
    --header-height: 68px;
  }


  html,
  body {
    width: 100%;
    max-width: 100%;

    overflow-x: hidden;
  }


  .container {
    width:
      calc(100% - 28px);
  }


  .section {
    padding: 48px 0;
  }


  /* =====================================================
     MOBILE HEADER
  ===================================================== */

  .site-header {
    height: 68px;

    background:
      rgba(31, 35, 43, 0.91);

    backdrop-filter:
      blur(20px)
      saturate(130%);

    -webkit-backdrop-filter:
      blur(20px)
      saturate(130%);

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.085);

    box-shadow:
      0 8px 26px
      rgba(0, 0, 0, 0.14);
  }


  .site-header.scrolled {
    height: 64px;

    background:
      rgba(38, 42, 50, 0.95);

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.11);
  }


  html[data-theme="light"]
  .site-header,
  html[data-theme="light"]
  .site-header.scrolled {
    background:
      rgba(246, 248, 250, 0.94);
  }


  .nav-container {
    width:
      calc(100% - 14px);

    gap: 5px;
  }


  .brand-area {
    flex: 1 1 auto;

    min-width: 0;

    margin-left: 0;

    gap: 6px;
  }


  .brand {
    min-width: 0;

    gap: 4px;
  }


  .brand-logo {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    padding: 0;

    border: 0;

    border-radius: 0;

    background: transparent;

    box-shadow: none;
  }


  .brand-text small {
    display: none;
  }


  .hme-wordmark {
    font-size: 12px;

    letter-spacing: 0.05em;
  }


  .header-sira {
    padding-left: 6px;

    gap: 3px;
  }


  .header-sira::before {
    height: 27px;
  }


  .header-sira span {
    display: none;
  }


  .header-sira img {
    width: 41px;
  }


  .nav-actions {
    gap: 4px;
  }


  .nav-cta {
    display: inline-flex !important;

    min-height: 35px;
    height: 35px;

    padding: 0 9px;

    border-radius: 9px;

    font-size: 9px;
    font-weight: 900;

    white-space: nowrap;

    box-shadow:
      0 7px 20px
      rgba(0, 166, 81, 0.20);
  }


  .theme-toggle,
  .menu-toggle {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;
  }


  .theme-toggle svg {
    width: 16px;
    height: 16px;
  }


  .menu-toggle span {
    left: 10px;
    right: 10px;
  }


  .menu-toggle span:first-child {
    top: 13px;
  }


  .menu-toggle span:last-child {
    top: 21px;
  }


  .menu-toggle.active
  span:first-child,
  .menu-toggle.active
  span:last-child {
    top: 17px;
  }


  .mobile-menu {
    inset:
      68px
      8px
      auto
      8px;

    padding: 9px;

    border-radius: 15px;

    max-height:
      calc(100dvh - 80px);

    overflow-y: auto;

    background:
      rgba(22, 25, 31, 0.97);
  }


  .mobile-menu a {
    padding: 12px;

    font-size: 12px;
  }


  /* =====================================================
     MOBILE TYPOGRAPHY
  ===================================================== */

  .section-head {
    margin-bottom: 21px;
  }


  .section-label,
  .section-head p {
    margin-bottom: 8px;

    font-size: 9px;

    letter-spacing: 0.1em;
  }


  .section-head h2,
  .about-content h2,
  .care-copy h2,
  .contact-copy h2 {
    font-size:
      clamp(
        28px,
        7.8vw,
        36px
      );

    line-height: 1.04;

    letter-spacing: -0.035em;
  }


  .section-head > span,
  .care-copy > span,
  .contact-copy > span {
    margin-top: 11px;

    font-size: 12px;

    line-height: 1.52;
  }


  /* =====================================================
     HERO
  ===================================================== */

  .hero {
    min-height: auto;
  }


  .hero-container {
    grid-template-columns: 1fr;

    gap: 19px;

    padding: 26px 0 34px;
  }


  .status-line {
    min-height: 28px;

    max-width: 100%;

    padding: 5px 10px;
  }


  .status-line p {
    font-size: 9px;

    line-height: 1.25;

    white-space: normal;
  }


  .live-dot {
    width: 6px;
    height: 6px;
  }


  .hero-copy h1 {
    margin-top: 13px;

    font-size:
      clamp(
        33px,
        9vw,
        42px
      );

    line-height: 1;

    letter-spacing: -0.035em;
  }


  .hero-description {
    margin-top: 12px;

    font-size: 12px;

    line-height: 1.52;
  }


  .hero-actions {
    width: 100%;

    display: grid;

    grid-template-columns:
      1fr 1fr;

    gap: 7px;

    margin-top: 16px;
  }


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

    min-height: 43px;

    padding: 7px 8px;

    font-size: 10px;

    white-space: normal;

    text-align: center;
  }


  /* =====================================================
     HERO STATS
  ===================================================== */

  .command-stats {
    width: 100%;

    display: flex;

    gap: 8px;

    margin-top: 16px;

    padding-bottom: 5px;

    overflow-x: auto;

    border: 0;

    border-radius: 0;

    background: transparent;

    backdrop-filter: none;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
  }


  .command-stats::-webkit-scrollbar {
    display: none;
  }


  .command-stats div {
    flex:
      0 0 68%;

    max-width: 225px;

    min-height: 68px;

    padding: 11px 12px;

    border: 1px solid var(--line);

    border-radius: 13px;

    background: var(--panel);

    scroll-snap-align: start;
  }


  .command-stats strong {
    font-size: 17px;
  }


  .command-stats span {
    font-size: 9px;
  }


  /* =====================================================
     SCANNER
  ===================================================== */

  .command-card {
    border-radius: 17px;
  }


  .command-top {
    min-height: auto;

    padding: 12px 13px;

    flex-direction: column;

    align-items: flex-start;

    gap: 6px;
  }


  .command-top span {
    font-size: 8px;
  }


  .command-top strong {
    margin-top: 3px;

    font-size: 16px;
  }


  .scan-state {
    font-size: 8px;
  }


  .building-scanner {
    height: 250px;
  }


  .building-shell {
    width:
      min(
        160px,
        52vw
      );

    height: 182px;
  }


  .system-node {
    width: 29px;
    height: 29px;
  }


  .system-node svg {
    width: 13px;
    height: 13px;
  }


  .node-cctv {
    left: 14%;
    top: 20%;
  }


  .node-alarm {
    left: 13%;
    top: 47%;
  }


  .node-wifi {
    left: 49%;
    top: 9%;
  }


  .node-iptv {
    left: 28%;
    top: 39%;
  }


  .node-automation {
    left: 58%;
    top: 28%;
  }


  .node-telephone {
    left: 75%;
    top: 55%;
  }


  .node-network {
    left: 83%;
    top: 77%;
  }


  .node-access {
    left: 44%;
    top: 84%;
  }


  .node-intercom {
    left: 59%;
    top: 78%;
  }


  .node-fiber {
    left: 17%;
    top: 83%;
  }


  .scanner-panel {
    padding: 12px;
  }


  #scannerHeading {
    margin-top: 6px;

    font-size: 16px;
  }


  #scannerText {
    margin-top: 7px;

    font-size: 10.7px;

    line-height: 1.44;
  }


  .scanner-tags {
    gap: 5px;

    margin-top: 8px;
  }


  .scanner-tags small {
    min-height: 24px;

    padding: 4px 7px;

    font-size: 8px;
  }


  .scanner-sira img {
    width: 66px;
  }


  /* =====================================================
     ABOUT
  ===================================================== */

  .about-container {
    grid-template-columns: 1fr;

    gap: 17px;
  }


  .about-image {
    border-radius: 17px;
  }


  .about-image img {
    width: 100%;

    height: 200px;

    transform: none;

    border-radius: 15px;
  }


  .about-content > p {
    margin-bottom: 11px;

    font-size: 11.7px;

    line-height: 1.52;
  }


  .why-grid,
  .about-values {
    display: flex;

    gap: 8px;

    margin-top: 13px;

    padding-bottom: 6px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
  }


  .why-grid::-webkit-scrollbar,
  .about-values::-webkit-scrollbar {
    display: none;
  }


  .why-card,
  .about-values > div {
    flex:
      0 0 72%;

    max-width: 245px;

    min-height: 116px;

    padding: 13px;

    border-radius: 14px;

    scroll-snap-align: start;
  }


  .why-card svg,
  .about-values svg {
    width: 18px;
    height: 18px;

    margin-bottom: 7px;
  }


  .why-card h3,
  .about-values h3 {
    margin-bottom: 5px;

    font-size: 12.5px;
  }


  .why-card p,
  .about-values p {
    font-size: 10px;

    line-height: 1.42;
  }


  /* =====================================================
     MOBILE CONTINUOUS CAROUSELS
  ===================================================== */

  .mobile-auto-carousel {
    scroll-behavior: auto !important;

    scroll-snap-type: none !important;

    overscroll-behavior-x: contain;

    -webkit-overflow-scrolling: touch;

    touch-action: pan-x pan-y;
  }


  /* =====================================================
     SYSTEMS
  ===================================================== */

  .systems-carousel-head {
    display: block;
  }


  .systems-carousel-controls {
    display: none;
  }


  .systems-carousel {
    width: 100%;
  }


  .systems-viewport {
    width:
      calc(100% + 28px);

    margin-left: -14px;

    padding-inline: 14px;

    overflow-x: auto;

    overflow-y: hidden;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }


  .systems-viewport::-webkit-scrollbar {
    display: none;
  }


  .systems-track {
    width: max-content;

    max-width: none;

    display: flex;

    gap: 9px;

    padding: 2px 0 7px;

    transform: none !important;

    transition: none !important;
  }


  .systems-track .system-card {
    width:
      min(
        286px,
        78vw
      );

    flex:
      0 0
      min(
        286px,
        78vw
      );

    max-width:
      min(
        286px,
        78vw
      );

    border-radius: 15px;
  }


  .system-image {
    height: 143px;
  }


  .system-content {
    padding: 13px;
  }


  .system-number {
    font-size: 8.5px;
  }


  .system-content h3 {
    margin-top: 6px;

    font-size: 16.5px;

    line-height: 1.18;
  }


  .system-content p {
    margin-top: 7px;

    font-size: 10.6px;

    line-height: 1.43;
  }


  .system-content ul {
    display: none;
  }


  .system-service-link {
    min-height: 39px;

    margin-top: 11px;

    padding: 7px 9px;

    font-size: 9.4px;

    white-space: normal;
  }


  .systems-carousel-bottom {
    display: none;
  }


  /* =====================================================
     CLIENTS — FIXED & ORGANIZED MOBILE
  ===================================================== */

  .clients-head {
    margin-bottom: 18px;
  }


  .featured-experience {
    width: 100%;

    overflow: hidden;

    border-radius: 17px;
  }


  .featured-experience-head {
    display: grid;

    grid-template-columns: 1fr;

    align-items: start;

    gap: 9px;

    padding: 16px 14px 15px;

    border-bottom: 1px solid var(--line);
  }


  .featured-experience-head > div {
    width: 100%;

    min-width: 0;
  }


  .featured-experience-head
  > div > span {
    display: block;

    margin: 0;

    color: var(--green);

    font-size: 8px;
    font-weight: 900;

    line-height: 1.3;

    letter-spacing: 0.11em;

    text-transform: uppercase;
  }


  .featured-experience-head h3 {
    width: 100%;

    max-width: 100%;

    margin: 5px 0 0;

    font-size: 19px;

    line-height: 1.15;

    letter-spacing: -0.025em;
  }


  .featured-experience-head > p {
    width: 100%;

    max-width: 100%;

    margin: 0;

    color: var(--muted);

    font-size: 10.8px;

    line-height: 1.5;
  }


  .featured-clients-grid {
    width: 100%;

    display: flex;

    align-items: stretch;

    gap: 8px;

    padding: 10px 12px 11px;

    overflow-x: auto;

    overflow-y: hidden;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }


  .featured-clients-grid::-webkit-scrollbar {
    display: none;
  }


  .featured-client,
  .featured-client:nth-child(2n),
  .featured-client:nth-child(4n),
  .featured-client:nth-last-child(-n + 4) {
    flex:
      0 0 58%;

    width: 58%;

    max-width: 185px;

    min-width: 165px;

    min-height: 112px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    gap: 8px;

    padding: 10px;

    border: 1px solid var(--line);

    border-radius: 13px;
  }


  .featured-logo-wrap {
    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 6px;

    border-radius: 10px;
  }


  .featured-logo-wrap img {
    width: auto;

    max-width: 112px;

    max-height: 40px;

    object-fit: contain;
  }


  .featured-client-copy {
    width: 100%;

    text-align: center;
  }


  .featured-client-copy small {
    display: block;

    margin-bottom: 3px;

    font-size: 6.5px;

    line-height: 1.2;
  }


  .featured-client-copy strong {
    display: block;

    font-size: 10.5px;

    line-height: 1.25;

    overflow-wrap: break-word;
  }


  .featured-proof {
    width: 100%;

    display: flex;

    align-items: stretch;

    gap: 7px;

    padding: 0 12px 12px;

    overflow-x: auto;

    overflow-y: hidden;

    border-top: 0;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }


  .featured-proof::-webkit-scrollbar {
    display: none;
  }


  .featured-proof > div {
    flex:
      0 0 68%;

    width: 68%;

    max-width: 215px;

    min-width: 185px;

    min-height: 76px;

    padding: 11px 12px;

    border: 1px solid var(--line);

    border-radius: 12px;
  }


  .featured-proof span {
    font-size: 6.5px;

    line-height: 1.2;
  }


  .featured-proof strong {
    margin-top: 5px;

    font-size: 17px;

    line-height: 1.1;
  }


  .featured-proof small {
    margin-top: 4px;

    font-size: 8px;

    line-height: 1.3;
  }


  /* =====================================================
     CLIENT RECORD
  ===================================================== */

  .clients-record {
    margin-top: 14px;

    border-radius: 17px;
  }


  .clients-record-head {
    display: grid;

    grid-template-columns: 1fr;

    gap: 8px;

    padding: 15px 13px 13px;
  }


  .clients-record-head > div {
    min-width: 0;
  }


  .clients-record-head h3 {
    margin-top: 5px;

    font-size: 17px;

    line-height: 1.17;
  }


  .clients-record-head > p {
    margin: 0;

    color: var(--muted);

    font-size: 9.8px;

    line-height: 1.44;
  }


  .clients-tabs {
    gap: 4px;

    padding: 5px;
  }


  .client-tab {
    min-height: 33px;

    padding: 0 8px;

    font-size: 7.5px;
  }


  .client-category-panel {
    padding: 1px 11px;
  }


  .client-group {
    grid-template-columns: 1fr;

    gap: 7px;

    padding: 10px 0;
  }


  .client-group-heading h4 {
    font-size: 9px;
  }


  .client-name-grid {
    grid-template-columns: 1fr;

    gap: 3px;
  }


  .client-name-grid span {
    min-height: 33px;

    display: flex;

    align-items: center;

    padding:
      6px 7px 6px 16px;

    font-size: 8.7px;

    line-height: 1.3;
  }


  .clients-proof {
    flex-direction: column;

    align-items: stretch;

    gap: 9px;

    padding: 13px 11px;
  }


  .clients-proof strong {
    font-size: 16px;
  }


  .clients-proof p {
    font-size: 9px;

    line-height: 1.43;
  }


  .clients-proof .btn {
    width: 100%;
  }


  /* =====================================================
     CARE
  ===================================================== */

  .care-container {
    grid-template-columns: 1fr;

    gap: 17px;
  }


  .care-panel {
    padding: 9px;

    border-radius: 17px;
  }


  .care-image {
    margin-bottom: 9px;

    border-radius: 14px;
  }


  .care-image img {
    height: 145px;
  }


  .care-screen {
    border-radius: 14px;
  }


  .care-screen-top {
    padding: 11px;
  }


  .care-screen-top span {
    font-size: 8px;
  }


  .care-screen-top strong {
    margin-top: 4px;

    font-size: 15px;
  }


  .health-list {
    display: grid;

    grid-template-columns:
      1fr 1fr;
  }


  .health-list div {
    min-width: 0;

    min-height: 44px;

    padding: 8px 9px;

    gap: 5px;
  }


  .health-list span,
  .health-list strong {
    font-size: 9px;
  }


  .care-features {
    grid-template-columns:
      1fr 1fr;

    gap: 7px;

    margin-top: 12px;
  }


  .care-features div {
    min-height: 88px;

    padding: 11px;
  }


  .care-features svg {
    width: 17px;
    height: 17px;
  }


  .care-features p {
    margin-top: 8px;

    font-size: 10px;

    line-height: 1.4;
  }


  /* =====================================================
     PROJECT ENVIRONMENTS
  ===================================================== */

  .sector-head {
    display: block;
  }


  .sector-controls {
    display: none;
  }


  .sector-viewport {
    width:
      calc(100% + 28px);

    margin-left: -14px;

    padding-inline: 14px;

    overflow-x: auto;

    overflow-y: hidden;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }


  .sector-viewport::-webkit-scrollbar {
    display: none;
  }


  .sector-track {
    width: max-content;

    gap: 9px;

    transform: none !important;

    transition: none !important;
  }


  .sector-track
  .sector-card {
    width:
      min(
        286px,
        78vw
      );

    flex:
      0 0
      min(
        286px,
        78vw
      );

    max-width:
      min(
        286px,
        78vw
      );
  }


  .sector-card {
    border-radius: 15px;
  }


  .sector-card img {
    height: 143px;
  }


  .sector-card > div {
    padding: 13px;
  }


  .sector-card span {
    font-size: 8px;
  }


  .sector-card h3 {
    margin-top: 6px;

    font-size: 16.5px;
  }


  .sector-card p {
    margin-top: 6px;

    font-size: 10.5px;

    line-height: 1.43;
  }


  .sector-navigation {
    display: none;
  }


  /* =====================================================
     REVIEWS
  ===================================================== */

  .customer-reviews {
    padding: 45px 0;
  }


  .customer-reviews-head {
    grid-template-columns: 1fr;

    gap: 13px;

    margin-bottom: 17px;
  }


  .customer-reviews-head h2 {
    font-size:
      clamp(
        28px,
        7.7vw,
        37px
      );

    line-height: 1.03;
  }


  .customer-reviews-head
  > div:first-child
  > span {
    margin-top: 9px;

    font-size: 11px;

    line-height: 1.48;
  }


  .google-rating-summary {
    width: 100%;

    min-width: 0;

    gap: 12px;

    padding: 12px 13px;

    border-radius: 13px;
  }


  .google-rating-score {
    font-size: 29px;
  }


  .google-rating-stars {
    font-size: 11px;
  }


  .customer-reviews-carousel {
    display: block;
  }


  .customer-reviews-viewport {
    width:
      calc(100% + 28px);

    margin-left: -14px;

    padding:
      3px 14px 9px;

    overflow-x: auto;

    overflow-y: hidden;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }


  .customer-reviews-viewport::-webkit-scrollbar {
    display: none;
  }


  .customer-reviews-track {
    width: max-content;

    max-width: none;

    gap: 9px;

    transform: none !important;

    transition: none !important;
  }


  .customer-review-card {
    width:
      min(
        278px,
        76vw
      );

    flex:
      0 0
      min(
        278px,
        76vw
      );

    max-width:
      min(
        278px,
        76vw
      );

    min-height: 205px;

    padding: 13px;

    border-radius: 15px;
  }


  .customer-review-card blockquote {
    margin: 13px 0 15px;

    font-size: 11.5px;

    line-height: 1.47;
  }


  .customer-review-top > span {
    font-size: 6.5px;
  }


  .customer-review-stars {
    font-size: 10.5px;
  }


  .customer-review-avatar {
    width: 34px;
    height: 34px;

    flex-basis: 34px;

    font-size: 10px;
  }


  .customer-review-author strong {
    font-size: 10.5px;
  }


  .customer-review-author span {
    font-size: 7.5px;
  }


  .customer-review-arrow {
    display: none;
  }


  .customer-review-dots {
    display: none;
  }


  .customer-reviews-bottom {
    flex-direction: column;

    align-items: stretch;

    gap: 9px;

    margin-top: 4px;
  }


  .customer-google-link {
    width: 100%;

    min-height: 40px;

    justify-content: center;

    font-size: 8.5px;
  }


  /* =====================================================
     CONTACT
  ===================================================== */

  .contact-container {
    display: flex;

    flex-direction: column;

    gap: 17px;
  }


  .contact-copy {
    display: contents;
  }


  .contact-copy
  > .section-label {
    order: 1;
  }


  .contact-copy
  > h2 {
    order: 2;
  }


  .contact-copy
  > span {
    order: 3;
  }


  .smart-form {
    order: 4;

    width: 100%;

    padding: 14px;

    border-radius: 17px;
  }


  .contact-methods {
    order: 5;

    grid-template-columns:
      1fr 1fr;

    gap: 7px;

    margin-top: 0;
  }


  .contact-methods a {
    min-width: 0;

    min-height: 44px;

    padding: 0 10px;

    border-radius: 10px;

    font-size: 9.5px;

    overflow-wrap: anywhere;
  }


  .contact-methods
  a[href^="mailto"] {
    grid-column:
      1 / -1;
  }


  .location-card {
    order: 6;

    margin-top: 0;

    padding: 14px;

    border-radius: 16px;
  }


  .form-grid {
    grid-template-columns: 1fr;
  }


  .form-group {
    gap: 5px;

    margin-bottom: 10px;
  }


  .form-group > label {
    font-size: 10px;
  }


  .form-group
  input:not([type="checkbox"]):not([type="radio"]),
  .form-group select,
  .form-group textarea {
    min-height: 44px;

    padding: 0 10px;

    border-radius: 9px;

    font-size: 11.5px;
  }


  .form-group textarea {
    min-height: 95px;

    padding-top: 10px;
  }


  .system-multiselect-trigger {
    min-height: 44px;

    font-size: 11.5px;
  }


  .location-card h3 {
    font-size: 13.5px;
  }


  .location-card p {
    font-size: 10.5px;

    line-height: 1.45;
  }


  .location-actions {
    display: grid;

    grid-template-columns:
      repeat(3, 1fr);

    gap: 6px;

    margin-top: 11px;
  }


  .location-actions a {
    padding: 8px 6px;

    text-align: center;

    font-size: 9.5px;
  }


  .map-embed {
    margin-top: 19px;

    border-radius: 16px;
  }


  .map-embed iframe {
    height: 225px;
  }


  /* =====================================================
     TABBY
  ===================================================== */

  .tabby-note {
    gap: 8px;

    padding: 9px;
  }


  .tabby-mark {
    padding: 5px 7px;

    font-size: 10px;
  }


  .tabby-note strong {
    font-size: 10px;
  }


  .tabby-note small {
    font-size: 8px;
  }


  /* =====================================================
     FOOTER
  ===================================================== */

  .footer {
    padding: 36px 0 18px;
  }


  .footer-container {
    grid-template-columns: 1fr;

    gap: 21px;
  }


  .footer-brand p {
    margin-top: 12px;

    font-size: 10.5px;

    line-height: 1.47;
  }


  .footer-links {
    grid-template-columns:
      1fr 1fr;

    gap: 18px 13px;
  }


  .footer-links h3 {
    margin-bottom: 9px;

    font-size: 10.5px;
  }


  .footer-links a {
    margin-bottom: 6px;

    font-size: 9.5px;

    line-height: 1.35;
  }


  .footer-bottom {
    margin-top: 23px;

    padding-top: 13px;

    flex-direction: column;

    gap: 5px;

    font-size: 8.5px;
  }


  .footer-socials {
    margin-top: 12px;
  }


  .footer-socials a {
    width: 34px;
    height: 34px;
  }


  .whatsapp-float {
    right: 12px;
    bottom: 12px;

    width: 48px;
    height: 48px;
  }


  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

  .container {
    width:
      calc(100% - 22px);
  }


  .header-sira {
    display: none;
  }


  .brand-logo {
    width: 33px;
    height: 33px;

    flex-basis: 33px;
  }


  .hme-wordmark {
    font-size: 11px;
  }


  .nav-cta {
    min-height: 34px;
    height: 34px;

    padding-inline: 7px;

    font-size: 8.2px;
  }


  .theme-toggle,
  .menu-toggle {
    width: 32px;
    height: 32px;

    flex-basis: 32px;
  }


  .hero-copy h1 {
    font-size:
      clamp(
        31px,
        9vw,
        39px
      );
  }


  .hero-actions {
    grid-template-columns: 1fr;
  }


  .command-stats div {
    flex-basis: 77%;
  }


  .why-card,
  .about-values > div {
    flex-basis: 82%;
  }


  .systems-track
  .system-card,
  .sector-track
  .sector-card,
  .customer-review-card {
    width:
      calc(100vw - 43px);

    flex-basis:
      calc(100vw - 43px);

    max-width:
      calc(100vw - 43px);
  }


  .featured-client,
  .featured-client:nth-child(2n),
  .featured-client:nth-child(4n),
  .featured-client:nth-last-child(-n + 4) {
    flex-basis: 68%;

    width: 68%;

    min-width: 160px;
  }


  .featured-proof > div {
    flex-basis: 78%;

    width: 78%;

    min-width: 180px;
  }


  .care-features {
    grid-template-columns: 1fr;
  }


  .footer-links {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior:
      auto !important;

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

}


/* =========================================================
   NATIVE THEMING
========================================================= */

html[data-theme="dark"] {
  color-scheme: dark;
}


html[data-theme="light"] {
  color-scheme: light;
}


html[data-theme="dark"] select,
html[data-theme="dark"] select option {
  color: #ffffff;

  background-color: #0d1117;
}


html[data-theme="light"] select,
html[data-theme="light"] select option {
  color: #0b1017;

  background-color: #ffffff;
}


/* =========================================================
   FINAL SAFETY
========================================================= */

.system-card,
.sector-card,
.featured-client,
.customer-review-card,
.smart-form,
.command-card,
.client-name-grid span {
  min-width: 0;
}


img,
svg,
iframe,
video {
  max-width: 100%;
}


[hidden] {
  display: none !important;
}