/* =========================================================
   HME WEBSITE — COMPLETE FINAL STYLESHEET
========================================================= */


/* =========================================================
   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;
}


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

.btn {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding:
    0 22px;

  border-radius: 10px;

  color: var(--text);

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

  text-transform: uppercase;
  letter-spacing: 0.045em;

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


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


.btn svg {
  width: 17px;
  height: 17px;
}


.btn-primary {
  color: #ffffff;

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

  box-shadow:
    0 18px 42px
    rgba(0, 166, 81, 0.22);
}


.btn-primary:hover {
  box-shadow:
    0 22px 48px
    rgba(0, 166, 81, 0.3);
}


.btn-secondary {
  border:
    1px solid
    var(--line-strong);

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

  backdrop-filter:
    blur(12px);
}


html[data-theme="light"]
.btn-secondary {
  background:
    rgba(0, 0, 0, 0.035);
}


/* =========================================================
   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);

  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;
}


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

.header-sira {
  position: relative;

  display: flex;
  align-items: center;

  gap: 9px;

  min-width: max-content;

  padding-left: 18px;

  background: transparent;

  transition:
    opacity var(--transition);
}


.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;

  line-height: 1;

  letter-spacing: 0.08em;

  white-space: nowrap;
}


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

  object-fit: contain;

  flex-shrink: 0;
}


.header-sira:hover {
  opacity: 0.82;
}


/* =========================================================
   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);

  box-shadow:
    0 0 12px
    rgba(0, 166, 81, 0.45);
}


.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;

  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;

  transform:
    rotate(0deg)
    scale(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;

  transform:
    rotate(0deg)
    scale(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;
}


.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);
}


/* =========================================================
   INTERACTIVE SYSTEM OVERVIEW
========================================================= */

.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);
}


html[data-theme="light"]
.building-scanner {
  background:
    radial-gradient(
      circle at center,
      rgba(0, 166, 81, 0.12),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.28);
}


.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 {

  0% {
    transform:
      translateY(-120px);
  }

  100% {
    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;

  overflow: visible;

  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, 0.11)
      16% 19%,

      transparent 19% 36%,

      rgba(255, 255, 255, 0.11)
      36% 39%,

      transparent 39% 58%,

      rgba(255, 255, 255, 0.11)
      58% 61%,

      transparent 61% 80%,

      rgba(255, 255, 255, 0.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%;
}


/* =========================================================
   OVERVIEW 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),
    background var(--transition);
}


html[data-theme="light"]
.system-node {
  background:
    rgba(255, 255, 255, 0.85);
}


.system-node::before {
  content: "";

  position: absolute;

  inset: -7px;

  border-radius: 50%;

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

  opacity: 0;

  transform:
    scale(0.82);

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


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

  color: var(--green);

  stroke-width: 1.9;
}


.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);
}


.system-node:hover::before,
.system-node:focus-visible::before,
.system-node.active::before {
  opacity: 1;

  transform:
    scale(1);
}


/* =========================================================
   OVERVIEW POSITIONS
========================================================= */

.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%;
}


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

.scanner-hme {
  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 3;

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

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

  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%;

  min-width: 0;

  padding: 22px;

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

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


html[data-theme="light"]
.scanner-panel {
  background:
    rgba(255, 255, 255, 0.32);
}


.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;

  line-height: 1.3;

  text-transform: uppercase;

  letter-spacing:
    0.1em;
}


.scanner-panel h3,
#scannerHeading {
  max-width: 100%;

  margin:
    10px 0 0;

  font-size: 24px;

  line-height: 1.15;

  letter-spacing:
    -0.04em;

  overflow-wrap: normal;
  word-break: normal;
}


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

  max-width: 100%;

  margin-top: 12px;

  color: var(--soft);

  font-size: 14px;

  line-height: 1.7;

  overflow-wrap: normal;
  word-break: normal;
}


.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;

  letter-spacing:
    0.1em;

  white-space: nowrap;
}


.scanner-sira img {
  width: 100px;
  height: auto;

  object-fit: contain;
}


.scanner-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 18px;
}


.scanner-tags small {
  display: inline-flex;
  align-items: center;

  min-height: 32px;

  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;

  line-height: 1.2;

  white-space: nowrap;
}


/* =========================================================
   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)
    ),
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 166, 81, 0.13),
      transparent 36%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(227, 27, 35, 0.11),
      transparent 36%
    );
}


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

  color: var(--text);

  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);

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


.why-card:hover {
  transform:
    translateY(-3px);

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


.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;

  color: var(--text);

  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 / TECHNICAL CAPABILITIES
========================================================= */

.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 {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  color: var(--text);

  background:
    var(--panel);

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

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


.systems-arrow:hover {
  transform:
    translateY(-2px);

  color: #ffffff;

  background:
    var(--green);

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


.systems-arrow svg {
  width: 19px;
  height: 19px;
}


.systems-carousel {
  width: 100%;
}


.systems-viewport {
  width: 100%;

  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;

  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(-7px);

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

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


.system-expand-trigger {
  cursor: pointer;
}


.system-expand-trigger.active-system {
  border-color:
    rgba(0, 166, 81, 0.75);

  box-shadow:
    0 0 0 1px
    rgba(0, 166, 81, 0.16),

    0 22px 55px
    rgba(0, 166, 81, 0.12);
}


/* =========================================================
   TECHNICAL CAPABILITY IMAGES
========================================================= */

.system-image {
  position: relative;

  height: 235px;

  overflow: hidden;

  padding: 0;

  background:
    #111111;
}


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

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

  transform: scale(1);

  transition:
    transform 500ms ease;
}


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


.system-card[data-card="fiber"]
.system-image img {
  object-position:
    center 45%;
}


.system-card[data-card="cctv"]
.system-image img,
.system-card[data-card="access"]
.system-image img,
.system-card[data-card="intercom"]
.system-image img,
.system-card[data-card="telephone"]
.system-image img {
  object-position:
    center center;
}


/* =========================================================
   TECHNICAL CAPABILITY TEXT
========================================================= */

.system-content {
  min-width: 0;

  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 0;

  padding: 0;

  display: grid;

  gap: 9px;

  list-style: none;
}


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

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

  line-height: 1.45;
}


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

  color: var(--green);
}


.systems-carousel-bottom {
  display: flex;
  justify-content: center;

  margin-top: 24px;
}


.systems-dots {
  display: flex;
  align-items: center;

  gap: 8px;
}


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

  padding: 0;

  border-radius: 999px;

  background:
    var(--line-strong);

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


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

  background:
    var(--green);
}


/* =========================================================
   SYSTEM DETAILS
========================================================= */

.system-detail-panel {
  position: relative;

  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  max-height: 0;

  margin-top: 0;

  opacity: 0;

  overflow: hidden;

  pointer-events: none;

  border-radius: 28px;

  border:
    1px solid transparent;

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

  transform:
    translateY(-10px);

  transition:
    max-height 700ms ease,
    opacity 400ms ease,
    transform 500ms ease,
    border-color 500ms ease,
    margin 500ms ease;

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


.system-detail-panel.active {
  max-height: 1500px;

  margin-top: 24px;

  opacity: 1;

  pointer-events: auto;

  transform:
    translateY(0);

  border-color:
    var(--line-strong);
}


html[data-theme="light"]
.system-detail-panel {
  background:
    rgba(255, 255, 255, 0.92);
}


.system-detail-image {
  position: relative;

  min-height: 480px;

  overflow: hidden;

  padding: 0;

  background:
    #101214;
}


.system-detail-image img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  min-height: 100%;

  max-height: none;

  object-fit: cover;

  object-position:
    center center;
}


.system-detail-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 38%,
      rgba(0, 0, 0, 0.88)
    );

  pointer-events: none;
}


#fiber-detail
.system-detail-image img {
  object-position:
    center 43%;
}


#cctv-detail
.system-detail-image img,
#access-detail
.system-detail-image img,
#intercom-detail
.system-detail-image img,
#automation-detail
.system-detail-image img,
#telephone-detail
.system-detail-image img,
#networking-detail
.system-detail-image img {
  object-position:
    center center;
}


.system-detail-image-overlay {
  position: absolute;

  z-index: 2;

  left: 28px;
  right: 28px;
  bottom: 28px;
}


.system-detail-image-overlay span {
  color: #4cdf8b;

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

  text-transform: uppercase;

  letter-spacing:
    0.12em;
}


.system-detail-image-overlay h3 {
  margin:
    8px 0 0;

  color: #ffffff;

  font-size: 32px;

  line-height: 1.08;

  letter-spacing:
    -0.05em;
}


.system-detail-body {
  padding: 34px;
}


.system-detail-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 30px;

  padding-bottom: 28px;

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


.system-detail-label {
  color: var(--green);

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

  line-height: 1.3;

  text-transform: uppercase;

  letter-spacing:
    0.12em;
}


.system-detail-intro h3 {
  max-width: 500px;

  margin:
    10px 0 0;

  font-size:
    clamp(
      29px,
      3vw,
      43px
    );

  line-height: 1;

  letter-spacing:
    -0.055em;
}


.system-detail-groups {
  display: grid;

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

  gap: 14px;

  margin-top: 24px;
}


.detail-group {
  padding: 20px;

  border-radius: 18px;

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

  background:
    var(--panel);

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


.detail-group:hover {
  transform:
    translateY(-3px);

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

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


.detail-group-icon {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  color: var(--green);

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


.detail-group-icon svg {
  width: 19px;
  height: 19px;
}


.detail-group > span {
  display: block;

  margin-top: 14px;

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


.detail-items {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 13px;
}


.detail-items small {
  padding:
    7px 9px;

  border-radius: 999px;

  color: var(--soft);

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

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

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

  line-height: 1.25;

  white-space: normal;
}


html[data-theme="light"]
.detail-items small {
  background:
    rgba(0, 0, 0, 0.035);
}


.system-detail-close {
  position: absolute;

  z-index: 10;

  top: 16px;
  right: 16px;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    rgba(0, 0, 0, 0.55);

  border:
    1px solid
    rgba(255, 255, 255, 0.18);
}


.system-detail-close:hover {
  background:
    var(--green);
}


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

.clients {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(0, 166, 81, 0.075),
      transparent 30%
    ),

    radial-gradient(
      circle at 14% 78%,
      rgba(227, 27, 35, 0.045),
      transparent 28%
    ),

    linear-gradient(
      180deg,
      var(--bg),
      var(--bg-2),
      var(--bg)
    );
}


.clients::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.016)
      1px,

      transparent 1px
    ),

    linear-gradient(
      90deg,

      rgba(255, 255, 255, 0.016)
      1px,

      transparent 1px
    );

  background-size:
    48px 48px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 14%,
      black 86%,
      transparent
    );
}


html[data-theme="light"]
.clients::before {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.022)
      1px,

      transparent 1px
    ),

    linear-gradient(
      90deg,

      rgba(0, 0, 0, 0.022)
      1px,

      transparent 1px
    );
}


.clients .container {
  position: relative;

  z-index: 1;
}


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

  margin-bottom: 42px;
}


/* =========================================================
   FEATURED EXPERIENCE
========================================================= */

.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);
}


html[data-theme="light"]
.featured-experience {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 249, 250, 0.9)
    );
}


.featured-experience-head {
  display: grid;

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

  align-items: end;

  gap: 34px;

  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;

  color: var(--text);

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

  line-height: 1.02;

  letter-spacing:
    -0.045em;
}


.featured-experience-head > p,
.clients-record-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 {
  position: relative;

  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);

  background: transparent;

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


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


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


.featured-client:hover {
  background:
    rgba(255, 255, 255, 0.028);
}


html[data-theme="light"]
.featured-client:hover {
  background:
    rgba(0, 0, 0, 0.022);
}


/* =========================================================
   CLIENT LOGOS
========================================================= */

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

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

  padding: 8px;

  border-radius: 12px;

  transition:
    background var(--transition),
    box-shadow var(--transition);
}


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

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

  object-fit: contain;
  object-position: center;

  filter: none;

  opacity: 1;

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


.featured-client:hover
.featured-logo-wrap img {
  transform:
    translateY(-2px);

  opacity: 1;
}


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

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


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


.featured-logo-wrap
img[src*="dubaicustoms"],
.featured-logo-wrap
img[src*="DubaiCustoms"] {
  max-width: 188px;

  max-height: 72px;
}


.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;

  letter-spacing:
    0.1em;
}


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

  color: var(--text);

  font-size: 17px;
  font-weight: 850;

  line-height: 1.25;

  letter-spacing:
    -0.025em;
}


.featured-proof {
  display: grid;

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

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

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


html[data-theme="light"]
.featured-proof {
  background:
    rgba(0, 0, 0, 0.015);
}


.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;

  letter-spacing:
    0.1em;
}


.featured-proof strong {
  display: block;

  margin-top: 7px;

  color: var(--text);

  font-size: 25px;

  line-height: 1;

  letter-spacing:
    -0.04em;
}


.featured-proof small {
  display: block;

  margin-top: 6px;

  color: var(--muted);

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


/* =========================================================
   PROJECT TRACK 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);
}


html[data-theme="light"]
.clients-record {
  background:
    rgba(255, 255, 255, 0.72);
}


.clients-record-head {
  display: grid;

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

  align-items: end;

  gap: 34px;

  padding:
    28px 30px 24px;

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


.clients-record-head h3 {
  font-size:
    clamp(
      22px,
      2.6vw,
      34px
    );
}


/* =========================================================
   CLIENT TABS
========================================================= */

.clients-tabs {
  display: flex;
  align-items: center;

  gap: 6px;

  padding:
    10px 12px;

  overflow-x: auto;

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

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

  scrollbar-width: none;
}


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


.client-tab {
  position: relative;

  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;

  border:
    1px solid
    transparent;

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

  text-transform: uppercase;

  letter-spacing:
    0.08em;

  white-space: nowrap;

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


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

  width: 6px;
  height: 6px;

  border-radius: 50%;

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


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

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

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


html[data-theme="light"]
.client-tab:hover {
  background:
    rgba(0, 0, 0, 0.025);
}


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

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

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


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

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


/* =========================================================
   CLIENT PANELS
========================================================= */

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


.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;

  margin-top: 1px;

  color: var(--green);

  flex:
    0 0 auto;
}


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

  color: var(--text);

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

  text-transform: uppercase;

  letter-spacing:
    0.075em;
}


.client-name-grid {
  display: grid;

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

  gap:
    9px 18px;
}


/* =========================================================
   CREATIVE PROJECT RECORD HOVER
========================================================= */

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

  min-width: 0;

  padding:
    8px 10px
    8px 20px;

  color: var(--muted);

  border:
    1px solid
    transparent;

  border-radius: 9px;

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

  line-height: 1.45;

  overflow: hidden;

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


.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);

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


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

  position: absolute;

  left: 0;
  top: 50%;

  width: 2px;
  height: 0;

  transform:
    translateY(-50%);

  border-radius: 10px;

  background:
    linear-gradient(
      180deg,
      var(--green),
      #38d987
    );

  transition:
    height var(--transition);
}


.client-name-grid span:hover {
  color: var(--text);

  transform:
    translateX(3px);

  background:
    linear-gradient(
      90deg,
      rgba(0, 166, 81, 0.09),
      rgba(0, 166, 81, 0.025)
    );

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

  box-shadow:
    0 10px 24px
    rgba(0, 0, 0, 0.08);
}


.client-name-grid span:hover::before {
  background:
    var(--green);

  transform:
    translateY(-50%)
    scale(1.18);

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


.client-name-grid span:hover::after {
  height: 60%;
}


.client-group-highlight
.client-name-grid span {
  color: var(--text);

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


.client-group-highlight
.client-name-grid span::before {
  background:
    var(--green);
}


/* =========================================================
   CLIENT CTA
========================================================= */

.clients-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;

  padding:
    26px 30px;

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

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


html[data-theme="light"]
.clients-proof {
  background:
    rgba(0, 0, 0, 0.018);
}


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


.clients-proof
> div > span {
  display: block;

  color: var(--muted);

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

  text-transform: uppercase;

  letter-spacing:
    0.1em;
}


.clients-proof strong {
  display: block;

  margin-top: 8px;

  color: var(--text);

  font-size: 22px;

  line-height: 1.05;

  letter-spacing:
    -0.04em;
}


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

  margin:
    8px 0 0;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.6;
}


.clients-proof .btn {
  flex:
    0 0 auto;
}


/* =========================================================
   HME 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;

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


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

  object-fit: cover;

  object-position:
    center 42%;
}


.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;

  letter-spacing:
    0.1em;
}


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

  margin-top: 9px;

  font-size: 28px;
}


.health-list {
  display: grid;
}


.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 div:last-child {
  border-bottom: 0;
}


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

  font-weight: 800;
}


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

  font-size: 15px;
}


.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);

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


.care-features div:hover {
  transform:
    translateY(-3px);

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


.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;
}


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

.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,
.sector-mobile-controls {
  display: flex;

  gap: 10px;
}


.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);
}


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

  background:
    var(--green);

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


.sector-carousel {
  width: 100%;
}


.sector-viewport {
  width: 100%;

  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);

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


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

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

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


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

  object-fit: cover;

  transition:
    transform 500ms ease;
}


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


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


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

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

  text-transform: uppercase;

  letter-spacing:
    0.11em;
}


.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-dots {
  display: flex;
  align-items: center;

  gap: 8px;
}


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

  padding: 0;

  border-radius: 999px;

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


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

  background:
    var(--green);
}


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


/* =========================================================
   CUSTOMER 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%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(227, 27, 35, 0.045),
      transparent 28%
    ),
    var(--bg);
}


.customer-reviews::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.014) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.014) 1px,
      transparent 1px
    );

  background-size:
    54px 54px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 15%,
      black 85%,
      transparent
    );
}


html[data-theme="light"]
.customer-reviews::before {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.018) 1px,
      transparent 1px
    );
}


.customer-reviews .container {
  position: relative;

  z-index: 2;
}


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

.customer-reviews-head {
  display: grid;

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

  align-items: end;

  gap: 48px;

  margin-bottom: 44px;
}


.customer-reviews-head > div:first-child {
  max-width: 760px;
}


.customer-reviews-head .section-label {
  margin-bottom: 14px;
}


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

  color: var(--text);

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

  line-height: 0.98;

  letter-spacing:
    -0.058em;
}


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

  max-width: 650px;

  margin-top: 18px;

  color: var(--soft);

  font-size: 15px;

  line-height: 1.72;
}


/* =========================================================
   GOOGLE RATING SUMMARY
========================================================= */

.google-rating-summary {
  position: relative;

  min-width: 255px;

  display: flex;
  align-items: center;

  gap: 18px;

  padding:
    20px 22px;

  overflow: hidden;

  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)
    );

  box-shadow:
    0 18px 45px
    rgba(0, 0, 0, 0.16);

  backdrop-filter:
    blur(14px);

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


.google-rating-summary:hover {
  transform:
    translateY(-3px);

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

  box-shadow:
    0 24px 56px
    rgba(0, 0, 0, 0.2);
}


.google-rating-summary::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 2;

  pointer-events: none;

  border-radius: inherit;

  box-shadow:
    inset 0 1px 0 #00a651,
    inset -1px 0 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 #000000,
    inset 1px 0 0 #e31b23;
}


html[data-theme="light"]
.google-rating-summary {
  background:
    rgba(255, 255, 255, 0.92);

  box-shadow:
    0 16px 40px
    rgba(0, 0, 0, 0.08);
}


html[data-theme="light"]
.google-rating-summary::before {
  box-shadow:
    inset 0 1px 0 #00a651,
    inset -1px 0 0 #d5d9dd,
    inset 0 -1px 0 #000000,
    inset 1px 0 0 #e31b23;
}


.google-rating-score {
  position: relative;

  z-index: 3;

  color: var(--text);

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

  line-height: 1;

  letter-spacing:
    -0.065em;
}


.google-rating-summary > div:last-child {
  position: relative;

  z-index: 3;
}


.google-rating-stars {
  display: flex;

  gap: 3px;

  color: #fbbc04;

  font-size: 15px;
}


.google-rating-summary span {
  display: block;

  margin-top: 7px;

  color: var(--muted);

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

  text-transform: uppercase;

  letter-spacing:
    0.08em;
}


/* =========================================================
   CUSTOMER REVIEW CAROUSEL
========================================================= */

.customer-reviews-carousel {
  position: relative;

  width: 100%;

  display: grid;

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

  align-items: center;

  gap: 14px;
}


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

  min-width: 0;

  overflow: hidden;

  padding:
    10px 3px 20px;
}


.customer-reviews-track {
  display: flex;

  gap: 18px;

  min-width: 0;

  will-change: transform;

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


/* =========================================================
   REVIEW CARDS
========================================================= */

.customer-review-card {
  position: relative;

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

  min-width: 0;
  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)
    );

  box-shadow:
    0 16px 42px
    rgba(0, 0, 0, 0.14);

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


.customer-review-card::before {
  content: "“";

  position: absolute;

  right: 14px;
  top: -12px;

  color:
    rgba(0, 166, 81, 0.085);

  font-size: 116px;
  font-family: Georgia, serif;
  font-weight: 900;

  line-height: 1;

  pointer-events: none;

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


.customer-review-card::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  transform:
    scaleX(0);

  transform-origin:
    left center;

  background:
    linear-gradient(
      90deg,
      var(--green),
      rgba(0, 166, 81, 0)
    );

  transition:
    transform 350ms ease;
}


.customer-review-card:hover {
  transform:
    translateY(-6px);

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

  box-shadow:
    0 24px 58px
    rgba(0, 0, 0, 0.22);

  background:
    linear-gradient(
      155deg,
      rgba(0, 166, 81, 0.07),
      rgba(255, 255, 255, 0.03)
    );
}


.customer-review-card:hover::before {
  transform:
    translateY(3px);

  color:
    rgba(0, 166, 81, 0.12);
}


.customer-review-card:hover::after {
  transform:
    scaleX(1);
}


html[data-theme="light"]
.customer-review-card {
  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 16px 35px
    rgba(0, 0, 0, 0.07);
}


/* =========================================================
   REVIEW TOP
========================================================= */

.customer-review-top {
  position: relative;

  z-index: 3;

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

  gap: 14px;
}


.customer-review-stars {
  display: flex;

  gap: 3px;

  color: #fbbc04;

  font-size: 13px;
}


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

  border-radius: 999px;

  color: var(--muted);

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

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

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

  text-transform: uppercase;

  letter-spacing:
    0.08em;

  white-space: nowrap;
}


html[data-theme="light"]
.customer-review-top > span {
  background:
    rgba(0, 0, 0, 0.025);
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.customer-review-card blockquote {
  position: relative;

  z-index: 3;

  flex: 1;

  margin:
    24px 0 28px;

  color: var(--text);

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

  line-height: 1.65;

  letter-spacing:
    -0.016em;
}


/* =========================================================
   REVIEW AUTHOR
========================================================= */

.customer-review-author {
  position: relative;

  z-index: 3;

  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-size: 13px;
  font-weight: 900;

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


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

  overflow: hidden;

  color: var(--text);

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

  line-height: 1.3;

  text-overflow: ellipsis;

  white-space: nowrap;
}


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

  margin-top: 3px;

  color: var(--muted);

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


/* =========================================================
   REVIEW CAROUSEL ARROWS
   BOTH LEFT + RIGHT GUARANTEED ON DESKTOP
========================================================= */

.customer-review-arrow {
  position: relative;

  z-index: 20;

  width: 48px;
  height: 48px;

  min-width: 48px;

  display: grid;
  place-items: center;

  padding: 0;

  opacity: 1;
  visibility: visible;

  border-radius: 14px;

  color: var(--text);

  background:
    var(--panel);

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

  box-shadow:
    0 10px 28px
    rgba(0, 0, 0, 0.08);

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


#reviewPrev {
  display: grid;

  justify-self: start;

  opacity: 1;
  visibility: visible;
}


#reviewNext {
  display: grid;

  justify-self: end;

  opacity: 1;
  visibility: visible;
}


.customer-review-arrow:hover {
  transform:
    translateY(-2px);

  color: #ffffff;

  background:
    var(--green);

  border-color:
    var(--green);

  box-shadow:
    0 14px 30px
    rgba(0, 166, 81, 0.22);
}


.customer-review-arrow svg {
  width: 18px;
  height: 18px;

  display: block;

  pointer-events: none;
}


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

.customer-reviews-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 22px;

  margin-top: 18px;
}


.customer-review-dots {
  display: flex;
  align-items: center;

  gap: 7px;
}


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

  padding: 0;

  border-radius: 999px;

  background:
    var(--line-strong);

  transition:
    width var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}


.customer-review-dot:hover {
  transform:
    scale(1.18);
}


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

  background:
    var(--green);

  box-shadow:
    0 0 12px
    rgba(0, 166, 81, 0.3);
}


.customer-google-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  min-height: 43px;

  padding:
    0 14px;

  border-radius: 10px;

  color: var(--soft);

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

  background:
    var(--panel);

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

  text-transform: uppercase;

  letter-spacing:
    0.05em;

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


.customer-google-link:hover {
  transform:
    translateY(-2px);

  color: var(--text);

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

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

  box-shadow:
    0 12px 28px
    rgba(0, 0, 0, 0.08);
}


.customer-google-link .fa-google {
  font-size: 14px;
}


.customer-google-link svg {
  width: 15px;
  height: 15px;
}


/* =========================================================
   GOOGLE REVIEW CTA STRIP
========================================================= */

.review-strip {
  position: relative;

  padding:
    24px 0 52px;

  background:
    var(--bg);
}


.review-panel {
  position: relative;

  display: grid;

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

  align-items: center;

  gap: 34px;

  padding:
    28px 30px
    28px 34px;

  overflow: hidden;

  border-radius: 18px;

  background:
    var(--bg-2);

  box-shadow:
    0 14px 36px
    rgba(0, 0, 0, 0.16);

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


.review-panel::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  border-radius: inherit;

  box-shadow:
    inset 0 2px 0
    rgba(0, 166, 81, 0.85),

    inset -2px 0 0
    rgba(255, 255, 255, 0.7),

    inset 0 -2px 0
    rgba(0, 0, 0, 0.95),

    inset 2px 0 0
    rgba(227, 27, 35, 0.85);
}


html[data-theme="light"]
.review-panel::before {
  box-shadow:
    inset 0 2px 0
    rgba(0, 166, 81, 0.8),

    inset -2px 0 0
    rgba(180, 186, 190, 0.75),

    inset 0 -2px 0
    rgba(10, 10, 10, 0.8),

    inset 2px 0 0
    rgba(227, 27, 35, 0.82);
}


.review-panel:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 18px 42px
    rgba(0, 0, 0, 0.2);
}


.review-copy {
  min-width: 0;

  display: grid;

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

  align-items: start;

  gap: 16px;
}


.review-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  color: var(--text);

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

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


html[data-theme="light"]
.review-icon {
  background:
    rgba(0, 0, 0, 0.025);
}


.review-icon svg {
  width: 18px;
  height: 18px;
}


.review-copy span {
  display: block;

  margin:
    1px 0 6px;

  color: var(--green);

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

  text-transform: uppercase;

  letter-spacing:
    0.13em;
}


.review-copy h2 {
  margin: 0;

  max-width: 670px;

  color: var(--text);

  font-size:
    clamp(
      24px,
      2.5vw,
      36px
    );

  line-height: 1.04;

  letter-spacing:
    -0.04em;
}


.review-copy h2 strong {
  color: var(--text);
}


.review-copy p {
  max-width: 620px;

  margin:
    10px 0 0;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.65;
}


.review-action {
  min-width: 210px;

  display: flex;
  flex-direction: column;

  align-items: flex-end;

  gap: 9px;

  padding-left: 28px;

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


.review-button {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding:
    0 17px;

  border-radius: 10px;

  color: var(--text);

  background:
    transparent;

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

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

  white-space: nowrap;

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


.review-button:hover {
  transform:
    translateY(-1px);

  color: #ffffff;

  background:
    var(--green);

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


.review-action small {
  color: var(--muted);

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


/* =========================================================
   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;

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


.contact-methods a:hover {
  color: var(--text);

  border-color:
    var(--line-strong);

  transform:
    translateX(2px);
}


.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;

  flex:
    0 0 auto;

  color: var(--green);
}


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

  color: var(--text);

  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);
}


/* =========================================================
   SMART 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);
}


html[data-theme="light"]
.smart-form {
  background:
    rgba(255, 255, 255, 0.82);
}


.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);

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


html[data-theme="light"]
.form-group
input:not([type="checkbox"]):not([type="radio"]),
html[data-theme="light"]
.form-group select,
html[data-theme="light"]
.form-group textarea {
  background:
    rgba(0, 0, 0, 0.035);
}


.form-group
input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:
    rgba(0, 166, 81, 0.58);

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

  box-shadow:
    0 0 0 3px
    rgba(0, 166, 81, 0.06);
}


.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;
}


/* =========================================================
   MULTI SELECT
========================================================= */

.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.open
.system-multiselect-trigger {
  border-color:
    rgba(0, 166, 81, 0.58);

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


.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);
}


html[data-theme="light"]
.system-multiselect-menu {
  background:
    rgba(255, 255, 255, 0.99);
}


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


.system-option {
  width: 100%;

  min-height: 44px;

  display: flex;
  align-items: center;

  gap: 11px;

  padding:
    9px 11px;

  border-radius: 9px;

  cursor: pointer;
}


.system-option:hover {
  background:
    rgba(0, 166, 81, 0.08);
}


.system-option
input[type="checkbox"] {
  width: 16px;
  height: 16px;

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


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

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


.system-option:has(input:checked) {
  background:
    rgba(0, 166, 81, 0.1);
}


.system-option:has(input:checked)
span {
  color: var(--text);
}


.checkbox-note {
  margin:
    7px 0 0;

  color: var(--muted);

  font-size: 11px;
  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 {
  flex:
    0 0 auto;

  padding:
    7px 10px;

  border-radius: 8px;

  background: #3bf7c4;

  color: #111111;

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

  letter-spacing:
    -0.03em;
}


.tabby-note div {
  min-width: 0;
}


.tabby-note strong {
  display: block;

  color: var(--text);

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


.tabby-note small {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: 10px;

  line-height: 1.4;
}


/* =========================================================
   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);
}


html[data-theme="light"]
.map-embed iframe {
  filter:
    grayscale(0.25)
    contrast(1);
}


/* =========================================================
   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 h4 {
  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-links a:hover {
  color: var(--text);
}


.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;
  align-items: center;

  gap: 9px;

  margin-top: 20px;
}


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

  display: grid;
  place-items: center;

  border-radius: 10px;

  color: var(--muted);

  background: transparent;

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

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


.footer-socials a:hover {
  background:
    var(--panel);

  transform:
    translateY(-2px);
}


.footer-socials
a:nth-child(1):hover {
  color: #e1306c;

  border-color:
    rgba(225, 48, 108, 0.35);
}


.footer-socials
a:nth-child(2):hover {
  color: #1877f2;

  border-color:
    rgba(24, 119, 242, 0.35);
}


.footer-socials
a:nth-child(3):hover {
  color: #0a66c2;

  border-color:
    rgba(10, 102, 194, 0.35);
}


/* =========================================================
   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);

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


.whatsapp-float:hover {
  transform:
    translateY(-3px);

  box-shadow:
    0 22px 55px
    rgba(37, 211, 102, 0.36);
}


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


/* =========================================================
   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;
}


.delay-2 {
  transition-delay:
    220ms;
}


/* =========================================================
   NATIVE FORM THEME FIX
========================================================= */

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


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


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

  background-color:
    #0d1117;
}


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

  background-color:
    #0d1117;
}


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

  background-color:
    #ffffff;
}


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

  background-color:
    #ffffff;
}


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

@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.94);

    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),
      visibility var(--transition);
  }


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


  .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-menu a.active {
    color: var(--text);

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


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

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


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


  .command-card {
    max-width: 760px;
  }

}


/* =========================================================
   980PX
========================================================= */

@media (max-width: 980px) {

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


  .about-image img {
    height: 430px;

    object-position:
      center 40%;
  }


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


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


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


  .featured-client:nth-child(4n) {
    border-right:
      1px solid
      var(--line);
  }


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


  .featured-client:nth-last-child(-n + 4) {
    border-bottom:
      1px solid
      var(--line);
  }


  .featured-client:nth-last-child(-n + 2) {
    border-bottom: 0;
  }


  .featured-experience-head,
  .clients-record-head {
    grid-template-columns:
      1fr;

    gap: 14px;
  }


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


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


  .customer-reviews {
    padding:
      82px 0 72px;
  }


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

    align-items: start;

    gap: 24px;
  }


  .google-rating-summary {
    width: max-content;

    min-width: 235px;
  }


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

}


/* =========================================================
   900PX
========================================================= */

@media (max-width: 900px) {

  .system-detail-panel {
    grid-template-columns:
      1fr;
  }


  .system-detail-image {
    min-height: 390px;
  }


  .system-detail-image img {
    min-height: 100%;
  }


  .review-panel {
    grid-template-columns:
      1fr;
  }


  .review-action {
    min-width: 0;

    width: 100%;

    align-items:
      flex-start;

    padding-left: 0;
    padding-top: 20px;

    border-left: 0;

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

}


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

@media (max-width: 700px) {

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


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


  .section {
    padding:
      72px 0;
  }


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


  .section-head h2,
  .care-copy h2,
  .contact-copy h2,
  .about-content h2 {
    font-size:
      clamp(
        32px,
        9vw,
        46px
      );

    line-height: 1;

    letter-spacing:
      -0.05em;
  }


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

    font-size: 14px;

    line-height: 1.65;
  }


  /* HEADER */

  .site-header {
    height: 74px;
  }


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

    gap: 8px;
  }


  .brand-area {
    margin-left: 0;

    gap: 8px;
  }


  .brand {
    gap: 6px;
  }


  .brand-logo {
    width: 37px;
    height: 37px;
  }


  .brand-text small {
    display: none;
  }


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


  .header-sira {
    gap: 5px;

    padding-left: 8px;
  }


  .header-sira span {
    font-size: 8px;
  }


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


  .nav-actions {
    gap: 6px;
  }


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


  /* HERO */

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

    gap: 30px;

    padding:
      46px 0;
  }


  .hero-copy h1 {
    font-size:
      clamp(
        40px,
        11vw,
        54px
      );

    line-height: 0.98;
  }


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

    font-size: 14px;

    line-height: 1.65;
  }


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


  .command-stats {
    grid-template-columns:
      1fr;

    margin-top: 30px;
  }


  .command-stats div {
    border-right: 0;

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


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


  /* INTERACTIVE OVERVIEW */

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


  .command-top {
    min-height: auto;

    padding: 17px;

    flex-direction: column;

    align-items:
      flex-start;
  }


  .building-scanner {
    height: 340px;
  }


  .building-shell {
    width: 190px;
    height: 245px;
  }


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


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


  .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: 74%;
    top: 56%;
  }


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


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


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


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


  .scanner-panel {
    padding: 18px;
  }


  .scanner-category-row {
    align-items:
      flex-start;

    gap: 10px;
  }


  #scannerHeading {
    font-size: 20px;
  }


  #scannerText {
    font-size: 13px;

    line-height: 1.55;
  }


  .scanner-tags {
    gap: 6px;

    margin-top: 14px;
  }


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

    padding:
      6px 9px;

    font-size: 10px;

    white-space: normal;
  }


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


  /* ABOUT */

  .about-container {
    gap: 26px;
  }


  .about-image img {
    height: 285px;

    transform:
      scale(0.97);

    object-position:
      center 40%;
  }


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

    gap: 9px;

    margin-top: 22px;
  }


  .why-card {
    padding: 15px;

    border-radius: 16px;
  }


  .why-card svg {
    width: 20px;
    height: 20px;

    margin-bottom: 10px;
  }


  .why-card h3 {
    margin-bottom: 7px;

    font-size: 14px;

    line-height: 1.2;
  }


  .why-card p {
    font-size: 11px;

    line-height: 1.5;
  }


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

    gap: 9px;

    margin-top: 14px;
  }


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

    border-radius: 16px;
  }


  .about-values svg {
    width: 20px;
    height: 20px;

    margin-bottom: 10px;
  }


  .about-values h3 {
    margin-bottom: 7px;

    font-size: 14px;
  }


  .about-values p {
    font-size: 11px;

    line-height: 1.5;
  }


  /* TECHNICAL CAPABILITIES */

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


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


  .systems-carousel {
    overflow: hidden;

    margin-inline:
      -14px;

    padding-inline:
      14px;
  }


  .systems-viewport {
    overflow: visible;
  }


  .systems-track {
    gap: 12px;
  }


  .systems-track
  .system-card {
    flex:
      0 0 88%;
  }


  .system-image {
    height: 205px;
  }


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

    object-fit: cover;
  }


  .system-content {
    padding: 19px;
  }


  .system-content h3 {
    font-size: 21px;

    line-height: 1.2;
  }


  .system-content p {
    font-size: 13px;

    line-height: 1.62;
  }


  .system-content ul {
    grid-template-columns:
      1fr 1fr;

    gap:
      7px 10px;
  }


  .system-content li {
    font-size: 11px;
  }


  /* DETAIL PANEL */

  .system-detail-panel {
    border-radius: 20px;
  }


  .system-detail-panel.active {
    max-height: 1900px;
  }


  .system-detail-image {
    min-height: 300px;
  }


  .system-detail-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }


  .system-detail-image-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }


  .system-detail-image-overlay h3 {
    font-size: 25px;
  }


  .system-detail-body {
    padding: 18px;
  }


  .system-detail-intro {
    flex-direction: column;

    gap: 16px;
  }


  .system-detail-intro h3 {
    font-size:
      clamp(
        26px,
        8vw,
        35px
      );
  }


  .system-detail-groups {
    grid-template-columns:
      1fr;
  }


  /* CLIENTS */

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


  .featured-experience,
  .clients-record {
    border-radius: 20px;
  }


  .featured-experience-head,
  .clients-record-head {
    padding:
      22px 18px 20px;
  }


  .featured-experience-head h3,
  .clients-record-head h3 {
    font-size: 24px;
  }


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


  .featured-client,
  .featured-client:nth-child(2n),
  .featured-client:nth-child(4n),
  .featured-client:nth-last-child(-n + 4),
  .featured-client:nth-last-child(-n + 2) {
    min-height: 145px;

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

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

    padding: 13px;
  }


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


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

    padding: 7px;
  }


  .featured-logo-wrap img {
    max-width: 120px;

    max-height: 48px;
  }


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


  .featured-client-copy strong {
    font-size: 13px;
  }


  .featured-proof {
    grid-template-columns:
      1fr;
  }


  .featured-proof > div {
    padding:
      17px 18px;

    border-right: 0;

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


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


  .clients-tabs {
    gap: 5px;

    padding: 8px;
  }


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

    padding:
      0 12px;

    font-size: 9px;
  }


  .client-category-panel {
    padding:
      4px 18px;
  }


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

    gap: 14px;

    padding:
      20px 0;
  }


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

    gap: 7px;
  }


  .client-name-grid span {
    padding:
      9px 8px
      9px 18px;

    font-size: 10px;
  }


  .client-name-grid span::before {
    left: 7px;
  }


  .clients-proof {
    flex-direction: column;

    align-items: stretch;

    gap: 20px;

    padding:
      22px 18px;
  }


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


  /* HME CARE */

  .care-container {
    gap: 28px;
  }


  .care-panel {
    padding: 12px;

    border-radius: 20px;
  }


  .care-image img {
    height: 205px;

    object-position:
      center 40%;
  }


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


  .care-screen-top strong {
    font-size: 22px;
  }


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


  .health-list div {
    padding: 14px;
  }


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


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

    gap: 9px;

    margin-top: 20px;
  }


  .care-features div {
    padding: 15px;
  }


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


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

    font-size: 12px;

    line-height: 1.5;
  }


  /* PROJECT ENVIRONMENTS */

  .sector-head {
    display: block;
  }


  .sector-controls {
    display: none;
  }


  .sector-carousel {
    overflow: hidden;

    margin-inline:
      -14px;

    padding-inline:
      14px;
  }


  .sector-viewport {
    overflow: visible;
  }


  .sector-track
  .sector-card {
    flex:
      0 0 88%;
  }


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


  .sector-navigation {
    justify-content:
      space-between;
  }


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


  /* CUSTOMER REVIEWS */

  .customer-reviews {
    padding:
      68px 0 58px;
  }


  .customer-reviews-head {
    gap: 20px;

    margin-bottom: 24px;
  }


  .customer-reviews-head h2 {
    font-size:
      clamp(
        32px,
        9vw,
        44px
      );

    line-height: 1;
  }


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

    font-size: 13px;

    line-height: 1.6;
  }


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

    min-width: 0;

    gap: 15px;

    padding:
      17px 18px;

    border-radius: 15px;
  }


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


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


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


  .customer-reviews-viewport {
    overflow: hidden;

    margin-inline:
      -14px;

    padding:
      6px 14px 16px;
  }


  .customer-reviews-track {
    gap: 12px;
  }


  .customer-review-card {
    flex:
      0 0 88%;

    min-height: 270px;

    padding: 19px;

    border-radius: 17px;
  }


  .customer-review-card::before {
    right: 8px;

    font-size: 96px;
  }


  .customer-review-card blockquote {
    margin:
      21px 0 24px;

    font-size: 14px;

    line-height: 1.6;
  }


  .customer-review-arrow,
  #reviewPrev,
  #reviewNext {
    display: none;
  }


  .customer-reviews-bottom {
    margin-top: 8px;

    flex-direction: column;

    align-items: stretch;

    gap: 16px;
  }


  .customer-review-dots {
    justify-content: center;
  }


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

    min-height: 46px;
  }


  /* GOOGLE REVIEW STRIP */

  .review-strip {
    padding:
      18px 0 38px;
  }


  .review-panel {
    gap: 18px;

    padding:
      20px 18px
      20px 22px;

    border-radius: 15px;
  }


  .review-copy {
    grid-template-columns:
      38px
      minmax(0, 1fr);

    gap: 12px;
  }


  .review-icon {
    width: 38px;
    height: 38px;
  }


  .review-copy h2 {
    font-size: 24px;
  }


  .review-action {
    padding-top: 16px;
  }


  .review-button {
    width: 100%;
  }


  .review-action small {
    width: 100%;

    text-align: center;
  }


  /* CONTACT */

  .contact-container {
    display: flex;

    flex-direction: column;

    gap: 26px;
  }


  .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: 20px;
  }


  .contact-methods {
    order: 5;
  }


  .location-card {
    order: 6;

    margin-top: 0;
  }


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


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

    border-radius: 20px;
  }


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


  /* TABBY */

  .tabby-note {
    gap: 10px;

    padding:
      11px 12px;
  }


  .tabby-mark {
    padding:
      6px 9px;

    font-size: 12px;
  }


  /* FOOTER */

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


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

    gap: 28px;
  }


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


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

    width: 54px;
    height: 54px;
  }

}


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

@media (max-width: 480px) {

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


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


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


  .node-telephone {
    left: 74%;
    top: 57%;
  }


  .scanner-sira {
    transform:
      scale(0.92);

    transform-origin:
      right top;
  }


  .customer-review-card {
    flex:
      0 0 91%;
  }


  .customer-review-top {
    align-items:
      flex-start;
  }


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


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

}


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

@media (max-width: 420px) {

  .brand-logo {
    width: 34px;
    height: 34px;
  }


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


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


  .header-sira span {
    font-size: 7px;
  }


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


  .btn {
    width: 100%;
  }


  .status-line {
    height: auto;

    align-items:
      flex-start;

    padding:
      10px 12px;
  }


  .status-line p {
    line-height: 1.4;
  }


  .hero-copy h1 {
    font-size:
      clamp(
        38px,
        11vw,
        48px
      );
  }


  .system-content ul {
    grid-template-columns:
      1fr;
  }


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


  .why-card {
    padding: 13px;
  }


  .why-card h3 {
    font-size: 13px;
  }


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

    line-height: 1.45;
  }


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


  .about-values > div {
    padding: 14px;
  }


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


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


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


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


  .customer-reviews {
    padding:
      60px 0 52px;
  }


  .customer-review-card {
    flex:
      0 0 91%;

    min-height: 255px;
  }


  .customer-review-top {
    gap: 8px;
  }


  .customer-review-top > span {
    padding:
      5px 7px;

    font-size: 7px;
  }


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


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

    flex-basis: 38px;
  }

}


/* =========================================================
   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;
  }

}


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

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


[hidden] {
  display:
    none !important;
}