:root {
  color-scheme: light;
  --ink: #101d26;
  --muted: #5c6e79;
  --line: #d9e5e8;
  --line-strong: #b9cbd0;
  --panel: #ffffff;
  --soft: #f2f7f8;
  --night: #071018;
  --navy: #102f42;
  --teal: #0c9699;
  --cyan: #31d5ff;
  --aqua: #74e0d8;
  --lime: #b8f26d;
  --green: #6b985c;
  --gold: #d6a74b;
  --coral: #d06d57;
  --mist: #eaf4f3;
  --cream: #fbf8ef;
  --shadow: 0 18px 60px rgba(16, 29, 38, 0.13);
  --shadow-strong: 0 30px 88px rgba(16, 29, 38, 0.24);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--teal) #dfeaec;
  scrollbar-width: auto;
}

::-webkit-scrollbar {
  width: 18px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(49, 213, 255, 0.08), rgba(184, 242, 109, 0.08)),
    #dfeaec;
  border-left: 1px solid rgba(16, 29, 38, 0.08);
}

::-webkit-scrollbar-thumb {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(180deg, var(--cyan), var(--teal) 46%, #0b5263 100%);
  border: 4px solid #dfeaec;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 0 18px rgba(49, 213, 255, 0.32);
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent 28%),
    linear-gradient(180deg, var(--lime), var(--cyan) 46%, var(--teal) 100%);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 29, 38, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 29, 38, 0.035) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(49, 213, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 82% 16%, rgba(184, 242, 109, 0.12), transparent 26rem),
    linear-gradient(180deg, #fbfcfd 0%, #eef6f7 46%, #fbfcfd 100%);
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
  line-height: 1.6;
}

body main,
body footer {
  transition: opacity 0.18s ease;
}

body.language-switching main,
body.language-switching footer {
  opacity: 0.96;
}

body.measuring-language [data-i18n],
body.measuring-language [data-i18n-html] {
  visibility: hidden;
  transition: none !important;
}

.scroll-progress {
  position: fixed;
  top: 74px;
  right: 10px;
  bottom: 18px;
  z-index: 25;
  width: 10px;
  padding: 2px;
  background: rgba(7, 16, 24, 0.18);
  border: 1px solid rgba(49, 213, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(7, 16, 24, 0.12);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: var(--scroll-progress, 0%);
  min-height: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 18%),
    linear-gradient(180deg, var(--lime), var(--cyan) 38%, var(--teal));
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(49, 213, 255, 0.66), 0 0 30px rgba(184, 242, 109, 0.24);
  transition: height 0.12s linear;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 65px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 253, 0.86);
  border-bottom: 1px solid rgba(217, 229, 232, 0.82);
  box-shadow: 0 12px 38px rgba(16, 29, 38, 0.055), inset 0 -1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px) saturate(1.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 44%),
    linear-gradient(135deg, var(--night), var(--teal) 58%, var(--cyan));
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(13, 139, 143, 0.26), 0 0 0 1px rgba(49, 213, 255, 0.18);
}

.brand-mark.has-logo {
  padding: 4px;
  overflow: hidden;
  background: #ffffff;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #314753;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-nav a:hover {
  color: var(--teal);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.nav-dropdown:hover .nav-link::after,
.nav-dropdown:focus-within .nav-link::after {
  transform: translateY(1px) rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  display: grid;
  gap: 4px;
  min-width: 260px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 252, 252, 0.99));
  border: 1px solid rgba(175, 232, 228, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16, 29, 38, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  color: #183645;
  border-radius: 8px;
  white-space: nowrap;
  font-weight: 800;
}

.dropdown-menu a::before {
  content: "";
  width: 3px;
  align-self: stretch;
  min-height: 22px;
  background: linear-gradient(180deg, var(--cyan), var(--teal));
  border-radius: 999px;
  opacity: 0.54;
  box-shadow: 0 0 14px rgba(49, 213, 255, 0.24);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: #09262b;
  background: linear-gradient(90deg, rgba(12, 150, 153, 0.1), rgba(184, 242, 109, 0.08));
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 48%),
    linear-gradient(135deg, var(--night), #123f4c);
  border: 1px solid rgba(49, 213, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 32, 42, 0.18);
}

.nav-cta[data-customer-session="active"] {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-logout {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  color: #314753;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-logout:hover,
.nav-logout:focus {
  color: #9f1f16;
  background: #fff7f5;
  border-color: rgba(180, 35, 24, 0.24);
}

.nav-logout[hidden] {
  display: none;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 104px;
  padding: 3px;
  background: rgba(237, 246, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lang-button {
  width: 100%;
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  color: #405563;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.lang-button.active {
  color: #fff;
  background: linear-gradient(135deg, #075e74, #0ca7a6 58%, #31d5ff);
  box-shadow: 0 8px 18px rgba(13, 139, 143, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-page {
  background:
    linear-gradient(90deg, rgba(16, 29, 38, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 29, 38, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcfd 0%, #edf7f8 44%, #fbfcfd 100%);
  background-size: 40px 40px, 40px 40px, auto;
}

.service-hero {
  position: relative;
  min-height: calc(82svh - 65px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  overflow: hidden;
  padding: clamp(92px, 10vw, 138px) clamp(18px, 5vw, 68px) clamp(56px, 7vw, 92px);
  color: #fff;
  background:
    radial-gradient(ellipse at 72% 26%, rgba(49, 213, 255, 0.2), transparent 34%),
    radial-gradient(ellipse at 18% 82%, rgba(184, 242, 109, 0.11), transparent 32%),
    linear-gradient(135deg, rgba(7, 16, 24, 0.98), rgba(13, 55, 68, 0.96)),
    url("assets/hero-it-ops.png") center / cover;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(49, 213, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 213, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 24, 0.88), rgba(7, 16, 24, 0.3));
  background-size: 64px 64px, 64px 64px, auto;
}

.service-hero-content,
.service-visual {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  font-size: clamp(2.65rem, 5vw, 5rem);
}

.service-hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: #dbecef;
  font-size: clamp(1.02rem, 2vw, 1.23rem);
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.voip-page .service-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 820px);
  gap: clamp(22px, 3.4vw, 46px);
  align-items: center;
  padding: clamp(70px, 8vw, 104px) clamp(18px, 5vw, 68px) clamp(46px, 5vw, 70px);
  background:
    radial-gradient(ellipse at 78% 20%, rgba(49, 213, 255, 0.22), transparent 32%),
    radial-gradient(ellipse at 56% 78%, rgba(184, 242, 109, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(7, 16, 24, 0.97), rgba(12, 49, 61, 0.96) 58%, rgba(9, 33, 44, 0.98)),
    url("assets/hero-it-ops.png") center / cover;
}

.voip-page .service-hero::before {
  background:
    linear-gradient(90deg, rgba(49, 213, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 213, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 24, 0.82), rgba(7, 16, 24, 0.2));
  background-size: 58px 58px, 58px 58px, auto;
}

.voip-page .service-hero-content {
  max-width: 760px;
}

.voip-page .service-hero h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.3vw, 4.35rem);
  line-height: 0.98;
}

.voip-page .service-hero-copy {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.voip-page .service-hero-actions {
  margin-top: 24px;
}

.voip-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.voip-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 11px;
  color: #eafffb;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(175, 232, 228, 0.2);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.voip-hero-badges svg {
  width: 16px;
  height: 16px;
  color: var(--aqua);
}

.web-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.web-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: #eafffb;
  background: rgba(255, 255, 255, 0.095);
  border: 1px solid rgba(175, 232, 228, 0.22);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
}

.web-hero-badges svg {
  width: 16px;
  height: 16px;
  color: var(--lime);
}

.service-visual {
  display: grid;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 38%),
    rgba(5, 18, 26, 0.72);
  border: 1px solid rgba(175, 232, 228, 0.26);
  border-radius: 8px;
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px) saturate(1.2);
}

.service-visual-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #a9cdd4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-orbit {
  position: relative;
  display: grid;
  min-height: 230px;
  place-items: center;
  border: 1px solid rgba(175, 232, 228, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(116, 224, 216, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(49, 213, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 213, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  overflow: hidden;
}

.service-orbit::before,
.service-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(116, 224, 216, 0.22);
  border-radius: 999px;
}

.service-orbit::before {
  width: 188px;
  height: 188px;
  animation: spinOrbit 12s linear infinite;
}

.service-orbit::after {
  width: 128px;
  height: 128px;
  border-color: rgba(184, 242, 109, 0.22);
  animation: spinOrbit 9s linear infinite reverse;
}

.service-orbit .orbit-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: #091822;
  background: linear-gradient(135deg, var(--lime), var(--aqua), var(--cyan));
  border-radius: 8px;
  box-shadow: 0 0 44px rgba(116, 224, 216, 0.42);
}

.service-orbit .orbit-icon svg {
  width: 42px;
  height: 42px;
}

.service-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-mini-metrics div {
  min-height: 82px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(175, 232, 228, 0.16);
  border-radius: 8px;
}

.service-mini-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.1;
}

.service-mini-metrics span {
  display: block;
  margin-top: 6px;
  color: #b9d9dd;
  font-size: 0.78rem;
  font-weight: 800;
}

.voip-media-panel {
  align-content: start;
}

.voip-page .voip-media-panel {
  gap: 12px;
  padding: 14px;
  box-shadow: 0 24px 70px rgba(2, 10, 16, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.voip-media-panel figure {
  margin: 0;
}

.voip-media-main,
.voip-media-grid figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(175, 232, 228, 0.18);
  border-radius: 8px;
  background: rgba(2, 10, 16, 0.58);
}

.voip-media-main img,
.voip-media-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voip-media-main {
  min-height: 290px;
  aspect-ratio: 16 / 10;
}

.voip-page .voip-media-main {
  min-height: 300px;
  aspect-ratio: 16 / 10;
}

.voip-media-main::after,
.voip-media-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 10, 16, 0.88));
  pointer-events: none;
}

.voip-media-main figcaption,
.voip-media-grid figcaption {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: #f4fbfc;
}

.voip-media-main figcaption strong,
.voip-media-main figcaption span {
  display: block;
}

.voip-media-main figcaption strong {
  font-size: 1rem;
  line-height: 1.2;
}

.voip-media-main figcaption span {
  margin-top: 5px;
  color: #c6dde1;
  font-size: 0.82rem;
  line-height: 1.35;
}

.voip-media-main figcaption a,
.voip-media-grid figcaption a {
  display: inline-flex;
  width: fit-content;
  margin-top: 7px;
  color: #9de7e9;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.voip-media-main figcaption a:hover,
.voip-media-grid figcaption a:hover {
  color: #d9fffb;
}

.voip-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  align-items: stretch;
}

.voip-media-grid figure {
  min-height: 150px;
}

.voip-page .voip-media-grid figure {
  min-height: 158px;
}

.voip-media-grid figcaption {
  font-size: 0.82rem;
  font-weight: 900;
}

.voip-media-grid .service-mini-metrics {
  grid-template-columns: 1fr;
}

.voip-media-grid .service-mini-metrics div {
  min-height: 0;
  padding: 12px;
}

.voip-page .voip-media-grid .service-mini-metrics div {
  padding: 10px 12px;
}

.voip-page {
  background:
    linear-gradient(90deg, rgba(12, 150, 153, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 150, 153, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbfc 0%, #edf7f8 38%, #fbfcfd 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.voip-page .service-hero {
  min-height: 620px;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 72% 18%, rgba(49, 213, 255, 0.18), transparent 30%),
    radial-gradient(ellipse at 88% 74%, rgba(184, 242, 109, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef9fa 54%, #e5f2f4 100%);
}

.voip-page .service-hero::before {
  background:
    linear-gradient(90deg, rgba(12, 150, 153, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 150, 153, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08));
  background-size: 58px 58px, 58px 58px, auto;
}

.voip-page .service-hero-content {
  padding: clamp(12px, 2vw, 18px) 0;
}

.voip-page .service-hero .eyebrow {
  color: #0c7175;
}

.voip-page .service-hero h1 {
  color: #102531;
  text-wrap: balance;
}

.voip-page .service-hero-copy {
  color: #435966;
}

.voip-page .button.primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%),
    linear-gradient(135deg, #086f7b, #0aa7a6);
  box-shadow: 0 16px 34px rgba(12, 150, 153, 0.26);
}

.voip-page .button.secondary {
  color: #12323b;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(12, 150, 153, 0.2);
  box-shadow: 0 10px 24px rgba(16, 29, 38, 0.07);
}

.voip-page .button.secondary:hover {
  border-color: rgba(12, 150, 153, 0.45);
  box-shadow: 0 16px 32px rgba(16, 29, 38, 0.1);
}

.voip-page .voip-hero-badges span {
  color: #12343d;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(12, 150, 153, 0.17);
  box-shadow: 0 10px 26px rgba(16, 29, 38, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.voip-page .voip-hero-badges svg {
  color: #0d8b8f;
}

.voip-page .voip-media-panel {
  position: relative;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 251, 0.98));
  border: 1px solid rgba(12, 150, 153, 0.16);
  box-shadow: 0 30px 80px rgba(16, 29, 38, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.voip-page .voip-media-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #31d5ff, #0c9699 44%, #b8f26d);
}

.voip-page .voip-media-panel::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -18px;
  left: 18px;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(12, 150, 153, 0.18), transparent 68%);
  pointer-events: none;
}

.voip-page .service-visual-top {
  color: #48616b;
}

.voip-page .service-visual-top span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  background: #edf8f8;
  border: 1px solid rgba(12, 150, 153, 0.12);
  border-radius: 999px;
}

.voip-page .service-visual-top span:first-child {
  color: #076a69;
}

.voip-page .voip-media-main,
.voip-page .voip-media-grid figure {
  background: #eef6f7;
  border-color: rgba(16, 29, 38, 0.08);
  box-shadow: 0 12px 30px rgba(16, 29, 38, 0.1);
}

.voip-page .voip-media-main img,
.voip-page .voip-media-grid img {
  object-position: center;
}

.voip-page .voip-media-main::after,
.voip-page .voip-media-grid figure::after {
  background: linear-gradient(180deg, transparent 45%, rgba(9, 28, 37, 0.72));
}

.voip-page .voip-media-main figcaption strong {
  color: #fff;
  font-size: 1.05rem;
}

.voip-page .voip-media-main figcaption span {
  color: #dff0f2;
}

.voip-page .voip-media-main figcaption a,
.voip-page .voip-media-grid figcaption a {
  color: #b5fbf4;
}

.voip-page .voip-media-grid .service-mini-metrics {
  gap: 8px;
}

.voip-page .voip-media-grid .service-mini-metrics div {
  background:
    linear-gradient(135deg, rgba(49, 213, 255, 0.1), transparent 46%),
    #ffffff;
  border-color: rgba(12, 150, 153, 0.13);
  box-shadow: 0 10px 24px rgba(16, 29, 38, 0.06);
}

.voip-page .voip-media-grid .service-mini-metrics strong {
  color: #0d6770;
  font-size: 1.08rem;
}

.voip-page .voip-media-grid .service-mini-metrics span {
  color: #425a64;
}

.voip-page .service-overview {
  padding-top: clamp(58px, 7vw, 86px);
}

.voip-page .service-overview-card {
  background:
    linear-gradient(135deg, rgba(49, 213, 255, 0.12), transparent 40%),
    #ffffff;
  border-color: rgba(12, 150, 153, 0.16);
  box-shadow: 0 18px 48px rgba(16, 29, 38, 0.08);
}

.voip-page .service-feature-card,
.voip-page .deliverable-card,
.voip-page .related-service-card,
.voip-page .service-step {
  background: linear-gradient(180deg, #ffffff, #f7fbfc);
  border-color: rgba(12, 150, 153, 0.13);
  box-shadow: 0 14px 34px rgba(16, 29, 38, 0.065);
}

.voip-page .service-feature-card svg,
.voip-page .related-service-card svg {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 8px;
  color: #087f83;
  background: #e8f8f6;
  border-radius: 8px;
  filter: none;
}

.voip-page .deliverables-band {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, #e4f7f7 0%, #f8fbf4 52%, #eef7f8 100%);
}

.voip-page .service-cta-card {
  background:
    radial-gradient(ellipse at 82% 18%, rgba(116, 224, 216, 0.22), transparent 32%),
    linear-gradient(135deg, #0a2a34, #0c5961);
  border-color: rgba(175, 232, 228, 0.24);
}

.voip-page .voip-media-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  display: block;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.voip-page .voip-media-panel::before,
.voip-page .voip-media-panel::after {
  display: none;
}

.voip-page .voip-media-main {
  position: relative;
  min-height: 520px;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: visible;
  background:
    radial-gradient(ellipse at 52% 57%, rgba(255, 255, 255, 0.74), transparent 48%),
    radial-gradient(ellipse at 52% 74%, rgba(12, 150, 153, 0.16), transparent 56%);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.voip-page .voip-media-main::before {
  content: "";
  position: absolute;
  inset: 40px 12px 28px;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(12, 150, 153, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 150, 153, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  border-radius: 8px;
  mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 74%);
  pointer-events: none;
}

.voip-page .voip-media-main::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 32px;
  left: 12%;
  height: 42px;
  background: radial-gradient(ellipse at center, rgba(16, 29, 38, 0.18), transparent 72%);
  filter: blur(7px);
  pointer-events: none;
}

.voip-page .voip-media-main img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(112%, 880px);
  max-width: none;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 36px rgba(16, 29, 38, 0.18));
}

.cctv-page {
  background:
    linear-gradient(90deg, rgba(12, 150, 153, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 150, 153, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbfc 0%, #eef7f8 42%, #fbfcfd 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.cctv-page .service-hero {
  min-height: 620px;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 640px);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(72px, 8vw, 108px) clamp(18px, 5vw, 68px) clamp(48px, 5vw, 72px);
  color: var(--ink);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(49, 213, 255, 0.18), transparent 32%),
    radial-gradient(ellipse at 50% 82%, rgba(184, 242, 109, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef9fa 56%, #e8f3f5 100%);
}

.cctv-page .service-hero::before {
  background:
    linear-gradient(90deg, rgba(12, 150, 153, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 150, 153, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
  background-size: 58px 58px, 58px 58px, auto;
}

.cctv-page .service-hero-content {
  max-width: 760px;
  padding: clamp(12px, 2vw, 18px) 0;
}

.cctv-page .service-hero .eyebrow {
  color: #0c7175;
}

.cctv-page .service-hero h1 {
  max-width: 720px;
  color: #102531;
  font-size: clamp(2.35rem, 4.25vw, 4.3rem);
  line-height: 0.98;
  text-wrap: balance;
}

.cctv-page .service-hero-copy {
  max-width: 680px;
  margin-top: 18px;
  color: #435966;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.cctv-page .button.primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%),
    linear-gradient(135deg, #086f7b, #0aa7a6);
  box-shadow: 0 16px 34px rgba(12, 150, 153, 0.26);
}

.cctv-page .button.secondary {
  color: #12323b;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(12, 150, 153, 0.2);
  box-shadow: 0 10px 24px rgba(16, 29, 38, 0.07);
}

.cctv-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cctv-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 11px;
  color: #12343d;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 150, 153, 0.17);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(16, 29, 38, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
}

.cctv-hero-badges svg {
  width: 16px;
  height: 16px;
  color: #0d8b8f;
}

.cctv-media-panel {
  position: relative;
  z-index: 1;
  align-self: center;
}

.cctv-media-main {
  position: relative;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 53% 56%, rgba(255, 255, 255, 0.82), transparent 42%),
    radial-gradient(ellipse at 52% 73%, rgba(12, 150, 153, 0.18), transparent 52%),
    radial-gradient(ellipse at 78% 16%, rgba(184, 242, 109, 0.16), transparent 34%);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.cctv-media-main::before {
  content: "";
  position: absolute;
  inset: 44px 14px 34px;
  background:
    linear-gradient(90deg, rgba(12, 150, 153, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 150, 153, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  border-radius: 8px;
  mask-image: radial-gradient(ellipse at center, #000 0 46%, transparent 74%);
  opacity: 0.7;
  pointer-events: none;
}

.cctv-media-main::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 42px;
  left: 18%;
  height: 34px;
  background: radial-gradient(ellipse at center, rgba(16, 29, 38, 0.2), transparent 70%);
  filter: blur(5px);
  pointer-events: none;
}

.cctv-camera-cluster {
  position: relative;
  z-index: 1;
  min-height: 470px;
}

.cctv-camera-cluster img {
  display: block;
  height: auto;
  filter: drop-shadow(0 24px 28px rgba(16, 29, 38, 0.2));
}

.cctv-camera-system {
  position: absolute;
  right: clamp(28px, 5vw, 58px);
  bottom: 24px;
  width: min(66%, 430px);
}

.cctv-camera-bullet,
.cctv-camera-dual,
.cctv-camera-wifi {
  position: absolute;
  width: clamp(118px, 22vw, 176px);
}

.cctv-camera-bullet {
  top: 48px;
  left: 24px;
  transform: rotate(-4deg);
}

.cctv-camera-dual {
  top: 110px;
  right: 18px;
  transform: rotate(3deg);
}

.cctv-camera-wifi {
  bottom: 58px;
  left: 56px;
  transform: rotate(-2deg);
}

.cctv-page .service-overview-card,
.cctv-page .service-feature-card,
.cctv-page .related-service-card,
.cctv-page .service-step {
  background: linear-gradient(180deg, #ffffff, #f7fbfc);
  border-color: rgba(12, 150, 153, 0.13);
  box-shadow: 0 14px 34px rgba(16, 29, 38, 0.065);
}

.cctv-page .service-feature-card svg,
.cctv-page .related-service-card svg {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 8px;
  color: #087f83;
  background: #e8f8f6;
  border-radius: 8px;
  filter: none;
}

.cctv-page .deliverables-band {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, #e4f7f7 0%, #f7fbf4 52%, #eef7f8 100%);
}

.cctv-page .deliverables-band .eyebrow {
  color: #0c7175;
}

.cctv-page .deliverables-band h2 {
  color: #102531;
}

.cctv-page .deliverable-card {
  min-height: 150px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f7fbfc);
  border-color: rgba(12, 150, 153, 0.15);
  box-shadow: 0 14px 34px rgba(16, 29, 38, 0.08);
}

.cctv-page .deliverable-card::before {
  background: linear-gradient(90deg, #31d5ff, #0c9699 44%, #b8f26d);
}

.cctv-page .deliverable-card span {
  color: #07343b;
  background: #e8f8f6;
  border: 1px solid rgba(12, 150, 153, 0.18);
}

.cctv-page .deliverable-card p {
  color: #223d48;
  font-weight: 800;
}

.web-showcase {
  gap: 18px;
  align-content: center;
}

.browser-frame {
  position: relative;
  overflow: hidden;
  padding: 14px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(160deg, #0b2630, #0f5b66);
  border: 1px solid rgba(175, 232, 228, 0.22);
  border-radius: 8px;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.24);
}

.browser-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 36%, rgba(255, 255, 255, 0.16) 48%, transparent 60% 100%);
  transform: translateX(-120%);
  animation: webShine 5.5s ease-in-out infinite;
  pointer-events: none;
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 12px;
}

.browser-top span {
  width: 9px;
  height: 9px;
  background: var(--coral);
  border-radius: 999px;
}

.browser-top span:nth-child(2) {
  background: var(--gold);
}

.browser-top span:nth-child(3) {
  background: var(--lime);
}

.browser-top strong {
  margin-left: auto;
  color: #bdebed;
  font-size: 0.72rem;
}

.browser-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(49, 213, 255, 0.16), rgba(184, 242, 109, 0.08));
  border: 1px solid rgba(175, 232, 228, 0.18);
  border-radius: 8px;
}

.browser-hero i {
  display: block;
  width: 72px;
  height: 8px;
  margin-bottom: 12px;
  background: var(--lime);
  border-radius: 999px;
}

.browser-hero h3,
.browser-hero p {
  margin: 0;
}

.browser-hero p {
  color: #c7e8eb;
}

.browser-hero a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 38px;
  color: #08272d;
  background: var(--aqua);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.browser-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.browser-content-grid span {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(175, 232, 228, 0.14);
  border-radius: 8px;
}

.preview-nav {
  display: grid;
  grid-template-columns: 0.7fr 0.5fr 0.5fr minmax(44px, 0.28fr);
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.preview-nav span,
.preview-nav strong {
  display: block;
  height: 10px;
  background: rgba(216, 245, 244, 0.16);
  border-radius: 999px;
}

.preview-nav strong {
  height: 26px;
  background: linear-gradient(90deg, var(--aqua), var(--lime));
}

.conversion-strip {
  display: grid;
  grid-template-columns: auto auto minmax(32px, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
  color: #c9e8eb;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(175, 232, 228, 0.14);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 900;
}

.conversion-strip strong {
  color: #fff;
}

.conversion-strip i {
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.browser-bars {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.browser-bars i {
  display: block;
  width: var(--bar);
  height: 7px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  border-radius: 999px;
  animation: pulseWidth 2.8s ease-in-out infinite;
}

.floating-device {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 118px;
  min-height: 172px;
  padding: 12px;
  color: #e8ffff;
  background: linear-gradient(180deg, rgba(15, 43, 52, 0.96), rgba(8, 23, 31, 0.96));
  border: 1px solid rgba(175, 232, 228, 0.22);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  animation: floatDevice 4s ease-in-out infinite;
}

.floating-device span,
.floating-device i {
  display: block;
  border-radius: 8px;
}

.floating-device span {
  height: 56px;
  background: linear-gradient(135deg, rgba(49, 213, 255, 0.28), rgba(184, 242, 109, 0.16));
}

.floating-device i {
  height: 42px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.floating-device strong {
  align-self: end;
  font-size: 0.74rem;
}

.web-effects-section {
  background: #f7fbfb;
}

.web-lab-section {
  background:
    linear-gradient(90deg, rgba(49, 213, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 213, 255, 0.04) 1px, transparent 1px),
    #fff;
  background-size: 42px 42px, 42px 42px, auto;
}

.web-lab-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.web-lab-card {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 252, 252, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 32, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.web-lab-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.web-lab-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.web-lab-card:hover::after {
  transform: scaleX(1);
}

.web-lab-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--teal);
}

.web-lab-card p {
  margin: 0;
  color: var(--muted);
}

.web-effect-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.web-effect-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(20, 32, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.web-effect-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.effect-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 9px;
  color: #07515a;
  background: rgba(49, 213, 255, 0.12);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 900;
}

.web-effect-card p {
  margin: 0;
  color: var(--muted);
}

.web-showroom-section {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(49, 213, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #071018, #0a414b 58%, #111821);
}

.web-showroom-section .section-heading p,
.web-showroom-section .section-heading h2 {
  color: #fff;
}

.web-showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.site-style-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(175, 232, 228, 0.16);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.site-style-card:hover {
  transform: translateY(-4px);
  border-color: rgba(175, 232, 228, 0.36);
}

.site-style-card h3 {
  margin-top: 18px;
}

.site-style-card p {
  margin: 0;
  color: #cde3e7;
}

.style-preview {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 178px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(49, 213, 255, 0.12), rgba(184, 242, 109, 0.06)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(175, 232, 228, 0.14);
  border-radius: 8px;
}

.style-preview span,
.style-preview strong,
.style-preview i,
.style-preview em {
  display: block;
  border-radius: 8px;
}

.landing-style .style-preview span {
  width: 44%;
  height: 10px;
  background: var(--lime);
}

.landing-style .style-preview strong {
  width: 72%;
  height: 46px;
  background: rgba(255, 255, 255, 0.18);
}

.landing-style .style-preview i {
  width: 84px;
  height: 32px;
  background: linear-gradient(90deg, var(--aqua), var(--lime));
}

.landing-style .style-preview i:last-child {
  width: 62%;
  height: 10px;
  background: rgba(255, 255, 255, 0.18);
}

.service-style .style-preview span {
  height: 28px;
  background: rgba(255, 255, 255, 0.16);
}

.service-style .style-preview div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.service-style .style-preview i {
  min-height: 98px;
  background: linear-gradient(180deg, rgba(49, 213, 255, 0.2), rgba(255, 255, 255, 0.08));
}

.system-style .style-preview span {
  width: 68%;
  height: 10px;
  background: rgba(255, 255, 255, 0.18);
}

.system-style .style-preview em {
  height: 76px;
  background:
    linear-gradient(90deg, rgba(184, 242, 109, 0.44) 0 24%, transparent 24% 30%, rgba(49, 213, 255, 0.24) 30% 66%, transparent 66% 72%, rgba(255, 255, 255, 0.16) 72%);
}

.system-style .style-preview strong {
  width: 96px;
  height: 34px;
  background: var(--aqua);
}

.conversion-blueprint {
  background: #f7fbfb;
}

.blueprint-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blueprint-flow article {
  min-height: 220px;
  padding: 24px;
  background: #fff;
}

.blueprint-flow span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  color: #07343b;
  background: linear-gradient(135deg, var(--aqua), var(--lime));
  border-radius: 8px;
  font-weight: 900;
}

.blueprint-flow p {
  margin: 0;
  color: var(--muted);
}

.effect-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.effect-lines i {
  display: block;
  width: 72%;
  height: 10px;
  background: linear-gradient(90deg, var(--cyan), rgba(12, 150, 153, 0.16));
  border-radius: 999px;
  animation: lineReveal 2.8s ease-in-out infinite;
}

.effect-lines i:nth-child(2) {
  width: 88%;
  animation-delay: 0.18s;
}

.effect-lines i:nth-child(3) {
  width: 58%;
  animation-delay: 0.36s;
}

.device-pair {
  position: relative;
  height: 96px;
  margin-bottom: 24px;
}

.device-pair i:first-child {
  position: absolute;
  inset: 8px auto auto 0;
  width: 118px;
  height: 74px;
  background: linear-gradient(135deg, #0e6872, #132732);
  border-radius: 8px;
}

.device-pair i:last-child {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 44px;
  height: 88px;
  background: linear-gradient(180deg, var(--aqua), #0c5f68);
  border-radius: 8px;
  animation: floatDevice 3.6s ease-in-out infinite;
}

.mini-form {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  padding: 14px;
  background: #f6fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-form i,
.mini-form button {
  display: block;
  height: 12px;
  border: 0;
  border-radius: 999px;
}

.mini-form i {
  background: #d8e8eb;
}

.mini-form button {
  width: 68px;
  background: linear-gradient(90deg, var(--teal), var(--aqua));
}

.speed-ring {
  display: grid;
  width: 94px;
  height: 94px;
  margin-bottom: 24px;
  place-items: center;
  background:
    radial-gradient(circle, #fff 54%, transparent 56%),
    conic-gradient(var(--lime) 0 78%, rgba(12, 150, 153, 0.14) 78% 100%);
  border-radius: 999px;
}

.speed-ring strong {
  color: #0b444c;
  font-size: 1.45rem;
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.service-overview-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-overview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-feature-grid,
.deliverable-grid,
.related-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.service-feature-card,
.deliverable-card,
.related-service-card {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(20, 32, 42, 0.07);
}

.service-feature-card::before,
.deliverable-card::before,
.related-service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--aqua), var(--lime), transparent);
}

.service-feature-card svg,
.related-service-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--teal);
}

.service-feature-card p,
.deliverable-card p,
.related-service-card p {
  margin: 0;
  color: var(--muted);
}

.web-options-band {
  position: relative;
  overflow: hidden;
  max-width: none;
  background:
    linear-gradient(90deg, rgba(16, 29, 38, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 29, 38, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #f9fcfd, #eaf6f7);
  background-size: 42px 42px, 42px 42px, auto;
}

.web-options-band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.web-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.web-option-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(185, 203, 208, 0.78);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 29, 38, 0.08);
}

.web-option-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--aqua), var(--lime));
}

.web-option-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(184, 242, 109, 0.18), transparent 28%),
    linear-gradient(135deg, #071018, #0b5664);
  border-color: rgba(175, 232, 228, 0.24);
  box-shadow: 0 22px 58px rgba(7, 16, 24, 0.22);
}

.web-option-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: #08272d;
  background: linear-gradient(135deg, var(--lime), var(--aqua));
  border-radius: 8px;
}

.web-option-icon svg {
  width: 24px;
  height: 24px;
}

.web-option-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-option-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.web-option-card p {
  margin: 0;
  color: var(--muted);
}

.web-option-card.featured span,
.web-option-card.featured p {
  color: #d8eef0;
}

.deliverables-band {
  max-width: none;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(49, 213, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 213, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #071018, #0b3b48 58%, #111821);
  background-size: 48px 48px, 48px 48px, auto;
}

.deliverables-band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.deliverable-card {
  min-height: 150px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(175, 232, 228, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.deliverable-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: #09262b;
  background: linear-gradient(135deg, var(--lime), var(--aqua));
  border-radius: 8px;
  font-weight: 900;
}

.deliverable-card p {
  color: #e3f2f4;
  font-weight: 800;
}

.service-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(20, 32, 42, 0.045);
}

.service-step span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  border-radius: 8px;
  font-weight: 900;
}

.related-service-card {
  min-height: 160px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 4vw, 36px);
}

.service-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(116, 224, 216, 0.18), transparent 28%),
    linear-gradient(135deg, var(--night), #0c5260);
  border: 1px solid rgba(175, 232, 228, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-cta-card p {
  margin: 8px 0 0;
  color: #d4e8ec;
}

.equipment-page .service-hero {
  align-items: center;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(99, 190, 209, 0.2), transparent 40%),
    radial-gradient(ellipse at 90% 78%, rgba(255, 255, 255, 0.7), transparent 34%),
    linear-gradient(135deg, #f7fcfd 0%, #e9f5f7 50%, #f9fcfd 100%);
}

.equipment-page .service-hero::before {
  background:
    linear-gradient(90deg, rgba(12, 150, 153, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 150, 153, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.1));
  background-size: 58px 58px, 58px 58px, auto;
}

.equipment-page .service-hero .eyebrow {
  color: #0c7175;
}

.equipment-page .service-hero h1 {
  color: #102531;
  text-wrap: balance;
}

.equipment-page .service-hero-copy {
  color: #435966;
}

.equipment-page .button.secondary {
  color: #12323b;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(12, 150, 153, 0.2);
  box-shadow: 0 10px 24px rgba(16, 29, 38, 0.07);
}

.equipment-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.equipment-hero-stats span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #36505b;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 150, 153, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(16, 29, 38, 0.07);
  font-size: 0.88rem;
  font-weight: 850;
}

.equipment-hero-stats strong {
  color: #0b4f52;
}

.equipment-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(380px, 42vw, 540px);
  overflow: visible;
  padding: 0 clamp(26px, 4.8vw, 68px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.equipment-visual::before {
  content: "";
  position: absolute;
  inset: 14% 10% 8%;
  z-index: 0;
  background:
    radial-gradient(ellipse at center, rgba(49, 213, 255, 0.14), transparent 64%),
    radial-gradient(ellipse at 74% 70%, rgba(184, 242, 109, 0.12), transparent 48%);
  filter: blur(18px);
}

.equipment-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 840px);
  max-width: 100%;
  min-height: clamp(360px, 40vw, 520px);
  object-fit: contain;
  object-position: center;
  opacity: 0.98;
  filter: drop-shadow(0 18px 30px rgba(16, 29, 38, 0.08)) saturate(0.98);
  mix-blend-mode: multiply;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 5%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 5%, #000 91%, transparent 100%);
  mask-composite: intersect;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.equipment-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.76fr) minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(20, 32, 42, 0.09);
}

.equipment-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  background: #eaf4f3;
}

.equipment-card div {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 24px;
}

.equipment-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.equipment-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.equipment-card p {
  margin: 0;
  color: var(--muted);
}

.product-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, #f7fbfb 0%, #eef7f8 48%, #f8fbfa 100%);
}

.storefront-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 44, 55, 0.1);
}

.storefront-head h2 {
  margin: 6px 0 0;
  max-width: 720px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  letter-spacing: 0;
}

.storefront-head p:last-child {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.storefront-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  max-width: 470px;
}

.filter-chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 11px;
  color: #405462;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 44, 55, 0.12);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.filter-chip.active {
  color: #fff;
  background: #0b4f52;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.15);
}

.storefront-promise {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto 16px;
}

.storefront-promise span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #183440;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 44, 55, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 32, 42, 0.045);
}

.storefront-promise svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.storefront-promise strong {
  min-width: 0;
  font-size: 0.86rem;
  line-height: 1.25;
}

.buying-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.buying-strip div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 3px 12px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 44, 55, 0.1);
  border-radius: 8px;
}

.buying-strip svg {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.buying-strip strong {
  color: #102531;
}

.buying-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.store-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 184px minmax(0, 1fr);
  min-height: 548px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(15, 44, 55, 0.11);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 32, 42, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 150, 153, 0.24);
  box-shadow: 0 20px 44px rgba(20, 32, 42, 0.11);
}

.product-card.featured {
  border-color: rgba(12, 150, 153, 0.42);
  box-shadow: 0 20px 48px rgba(12, 150, 153, 0.13);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 8px;
  color: #09262b;
  background: linear-gradient(135deg, var(--lime), var(--aqua));
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-media {
  display: grid;
  min-height: 184px;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(12, 150, 153, 0.09), rgba(49, 213, 255, 0.08)),
    linear-gradient(180deg, #f8fbfb, #edf4f5);
  border-bottom: 1px solid rgba(15, 44, 55, 0.08);
}

.product-media img {
  width: 100%;
  height: 100%;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(16, 29, 38, 0.1));
  mix-blend-mode: multiply;
}

.service-media svg {
  width: 68px;
  height: 68px;
  color: var(--teal);
}

.product-card-body {
  display: grid;
  gap: 13px;
  align-content: start;
  padding: 20px;
}

.product-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 44, 55, 0.1);
}

.product-card-head span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-head strong {
  color: #0a2d35;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.product-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.65vw, 1.34rem);
  line-height: 1.16;
}

.product-card p,
.product-card li {
  color: var(--muted);
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-specs span {
  padding: 6px 8px;
  color: #0b4f52;
  background: rgba(12, 150, 153, 0.07);
  border: 1px solid rgba(12, 150, 153, 0.12);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 900;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.product-buy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 4px;
}

.stock-label {
  color: #0c6f62;
  font-size: 0.84rem;
  font-weight: 900;
}

.product-buy-row .button {
  min-width: 112px;
  justify-content: center;
}

.cart-summary {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: minmax(200px, 0.8fr) repeat(3, minmax(140px, 0.45fr)) auto;
  gap: 16px;
  align-items: center;
  order: -1;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(12, 150, 153, 0.06), transparent 40%),
    #fff;
  border: 1px solid rgba(15, 44, 55, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 32, 42, 0.075);
}

.cart-summary h3 {
  margin: 6px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.cart-summary p:last-of-type {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.cart-line {
  display: grid;
  gap: 4px;
  padding: 0 14px;
  border-left: 1px solid var(--line);
}

.cart-line span {
  color: var(--muted);
  font-weight: 800;
}

.cart-line strong {
  color: #102531;
}

.comparison-panel {
  margin-top: 18px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(20px, 4vw, 28px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(20, 32, 42, 0.08);
}

.comparison-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
}

.comparison-head h3 {
  margin: 6px 0 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.comparison-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) minmax(220px, 1.2fr) minmax(110px, 0.55fr) minmax(150px, 0.8fr);
  gap: 12px;
  padding: 13px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
  color: #3b4e5c;
  font-weight: 750;
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row.header {
  color: #0b4f52;
  background: #eff8f8;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-page {
  padding: clamp(72px, 9vw, 112px) clamp(18px, 5vw, 68px);
  background:
    radial-gradient(circle at 80% 16%, rgba(49, 213, 255, 0.16), transparent 30rem),
    linear-gradient(180deg, #f8fcfd, #edf6f7);
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.38fr);
  gap: clamp(20px, 4vw, 34px);
  max-width: 1120px;
  margin: 0 auto;
}

.checkout-panel,
.checkout-summary {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 16, 24, 0.12);
}

.checkout-panel::before,
.checkout-summary::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--aqua), var(--lime), transparent);
}

.checkout-panel h1,
.checkout-summary h2 {
  margin: 0;
}

.checkout-panel p,
.checkout-summary p {
  color: var(--muted);
}

.checkout-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: #29404c;
  font-weight: 850;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbdbe0;
  border-radius: 8px;
  font: inherit;
}

.checkout-form textarea {
  min-height: 108px;
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: 3px solid rgba(34, 211, 238, 0.18);
  border-color: var(--teal);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.payment-methods legend {
  grid-column: 1 / -1;
  color: #29404c;
  font-weight: 900;
}

.payment-option {
  position: relative;
  min-width: 0;
  padding: 0;
  cursor: pointer;
}

.payment-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.payment-option > span {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 14px;
  background: #f8fcfc;
  border: 1px solid #cbdbe0;
  border-radius: 8px;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.payment-option strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #183645;
}

.payment-option svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.payment-option small {
  color: var(--muted);
  line-height: 1.35;
}

.payment-option:has(input:checked) > span {
  background: linear-gradient(135deg, rgba(49, 213, 255, 0.16), rgba(184, 242, 109, 0.13));
  border-color: rgba(12, 150, 153, 0.62);
  box-shadow: 0 12px 28px rgba(12, 150, 153, 0.11);
}

.payment-option:focus-within > span,
.payment-option:hover > span {
  transform: translateY(-1px);
  border-color: rgba(12, 150, 153, 0.5);
}

.payment-readiness,
.checkout-next-steps {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  color: #31515b;
  background: #f3f9fa;
  border: 1px solid rgba(12, 150, 153, 0.16);
  border-radius: 8px;
}

.payment-readiness strong,
.checkout-next-steps strong {
  color: #0b4f52;
}

.payment-readiness span,
.checkout-next-steps span {
  color: var(--muted);
  line-height: 1.45;
}

.payment-setup-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.payment-setup-list article {
  display: grid;
  gap: 9px;
  padding: 13px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-setup-list strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #183645;
}

.payment-setup-list svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
}

.payment-setup-list ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.order-summary-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.order-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 850;
}

.order-summary-row span {
  color: var(--muted);
}

.checkout-status {
  min-height: 24px;
  margin: 8px 0 0;
  color: #0b666b;
  font-weight: 850;
}

.equipment-band {
  background:
    linear-gradient(90deg, rgba(184, 242, 109, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 213, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 84% 16%, rgba(214, 167, 75, 0.2), transparent 30%),
    linear-gradient(135deg, #071018, #123345 58%, #18212a);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 65px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(92px, 10vw, 142px) clamp(18px, 5vw, 68px) 44px;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.05);
}

.hero-shade {
  background:
    radial-gradient(ellipse at 72% 27%, rgba(49, 213, 255, 0.24), transparent 35%),
    radial-gradient(ellipse at 18% 84%, rgba(184, 242, 109, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(7, 16, 24, 0.97) 0%, rgba(7, 16, 24, 0.86) 37%, rgba(7, 16, 24, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 16, 24, 0.86), transparent 48%);
}

.hero-tech-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(49, 213, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 213, 255, 0.055) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 74%);
  pointer-events: none;
}

.scan-line {
  position: absolute;
  height: 2px;
  width: min(430px, 36vw);
  background: linear-gradient(90deg, transparent, rgba(116, 224, 216, 0.1), rgba(49, 213, 255, 0.72), transparent);
  box-shadow: 0 0 24px rgba(49, 213, 255, 0.42);
  animation: scanAcross 8s linear infinite;
}

.line-one {
  top: 28%;
  left: 14%;
}

.line-two {
  top: 55%;
  left: 38%;
  animation-delay: -2.2s;
}

.line-three {
  top: 73%;
  left: 9%;
  animation-delay: -5.1s;
}

.node-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #b8f26d;
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(184, 242, 109, 0.13), 0 0 26px rgba(184, 242, 109, 0.6);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.node-a {
  top: 26%;
  left: 22%;
}

.node-b {
  top: 44%;
  left: 48%;
  animation-delay: -0.7s;
}

.node-c {
  top: 67%;
  left: 31%;
  animation-delay: -1.3s;
}

.node-d {
  top: 58%;
  left: 66%;
  animation-delay: -2s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(740px, 100%);
}

.hero-live-stack {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  top: clamp(110px, 17vw, 210px);
  z-index: 3;
  width: min(360px, 28vw);
  pointer-events: none;
}

.live-card {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent 42%),
    linear-gradient(135deg, rgba(12, 150, 153, 0.16), rgba(184, 242, 109, 0.045)),
    rgba(7, 16, 24, 0.78);
  border: 1px solid rgba(175, 232, 228, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(1.25);
}

.main-live-card {
  padding: 18px;
  animation: floatPanel 6s ease-in-out infinite;
}

.live-card-top,
.live-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-card-top {
  color: #b9d9dd;
  font-size: 0.76rem;
  font-weight: 800;
}

.live-pill {
  padding: 4px 7px;
  color: #09262b;
  background: linear-gradient(135deg, #8cf4ec, #c9f7d2);
  border-radius: 6px;
  box-shadow: 0 0 22px rgba(140, 244, 236, 0.34);
}

.main-live-card h3 {
  margin-top: 16px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  height: 92px;
  align-items: end;
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(49, 213, 255, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  background-size: 28px 100%, auto;
  border-radius: 8px;
}

.signal-bars span {
  height: var(--height);
  min-height: 20px;
  background: linear-gradient(180deg, #b4fff7, #0faaa8 58%, #0a747d);
  border-radius: 6px 6px 2px 2px;
  animation: pulseBar 2.2s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(116, 224, 216, 0.22);
}

.signal-bars span:nth-child(2) {
  animation-delay: 0.2s;
}

.signal-bars span:nth-child(3) {
  animation-delay: 0.35s;
}

.signal-bars span:nth-child(4) {
  animation-delay: 0.5s;
}

.signal-bars span:nth-child(5) {
  animation-delay: 0.65s;
}

.signal-bars span:nth-child(6) {
  animation-delay: 0.8s;
}

.live-stats {
  margin-top: 14px;
}

.live-stats div {
  min-width: 0;
}

.live-stats strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.live-stats span,
.mini-live-card span {
  display: block;
  color: #c8dde2;
  font-size: 0.78rem;
}

.command-feed {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(175, 232, 228, 0.16);
  color: #96f0eb;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
}

.command-feed span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.command-feed span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(184, 242, 109, 0.74);
}

.mini-live-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 242px;
  min-height: 82px;
  padding: 14px 15px;
  overflow: hidden;
}

.mini-live-card::before,
.mini-live-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mini-live-card::before {
  inset: 0;
  background:
    linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.16), transparent 54%),
    radial-gradient(circle at 18% 26%, rgba(49, 213, 255, 0.2), transparent 24%);
  transform: translateX(-112%);
  animation: statusSweep 4.4s ease-in-out infinite;
}

.mini-live-card::after {
  top: 12px;
  right: 12px;
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(184, 242, 109, 0.13), 0 0 18px rgba(184, 242, 109, 0.72);
  animation: nodePulse 2.1s ease-in-out infinite;
}

.mini-live-card svg {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: #80e5df;
  filter: drop-shadow(0 0 10px rgba(128, 229, 223, 0.34));
}

.mini-live-card > div {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
}

.mini-live-card strong {
  display: block;
  padding-right: 16px;
  font-size: 0.98rem;
  line-height: 1.15;
}

.status-meter {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.25fr;
  gap: 5px;
  margin-top: 9px;
}

.status-meter i {
  height: 4px;
  background: linear-gradient(90deg, rgba(49, 213, 255, 0.18), var(--aqua));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(116, 224, 216, 0.32);
  animation: statusMeter 1.9s ease-in-out infinite;
}

.status-meter i:nth-child(2) {
  animation-delay: 0.17s;
}

.status-meter i:nth-child(3) {
  animation-delay: 0.34s;
}

.camera-meter i {
  background: linear-gradient(90deg, rgba(214, 167, 75, 0.28), var(--lime), var(--aqua));
}

.card-network {
  right: 74%;
  top: 98%;
  animation: floatNetwork 5.8s ease-in-out infinite;
}

.card-camera {
  right: -13%;
  top: 123%;
  animation: floatCamera 6.6s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 12px;
  color: #0a8489;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9af4ec;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.55rem, 5.7vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #e0edf0;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  padding: 8px 12px;
  color: #e7fffc;
  background: rgba(255, 255, 255, 0.105);
  border: 1px solid rgba(175, 232, 228, 0.24);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
}

.button.primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 48%),
    linear-gradient(135deg, #078f94, #12aaa5);
  box-shadow: 0 16px 34px rgba(12, 150, 153, 0.3);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button.secondary:hover {
  border-color: rgba(154, 244, 236, 0.48);
  box-shadow: 0 12px 28px rgba(7, 16, 24, 0.22);
}

.button.portal {
  color: #0b4f52;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(235, 249, 249, 0.74)),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(116, 224, 216, 0.38);
  box-shadow: 0 16px 34px rgba(7, 16, 24, 0.14);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: clamp(54px, 9vw, 96px);
  background: rgba(175, 232, 228, 0.16);
  border: 1px solid rgba(175, 232, 228, 0.22);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-panel div {
  min-height: 120px;
  padding: 20px;
  background: rgba(10, 29, 41, 0.8);
}

.metric {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-panel span:last-child {
  color: #c6d9de;
  font-size: 0.9rem;
}

.logo-strip {
  position: relative;
  overflow: hidden;
  padding: 22px clamp(18px, 5vw, 68px);
  color: #546672;
  background:
    linear-gradient(90deg, rgba(49, 213, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 213, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 248, 249, 0.96));
  background-size: 42px 42px, 42px 42px, auto;
  border-top: 1px solid rgba(49, 213, 255, 0.16);
  border-bottom: 1px solid rgba(16, 29, 38, 0.1);
}

.logo-strip::before,
.logo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(42px, 9vw, 130px);
  pointer-events: none;
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(90deg, #fbfcfd, rgba(251, 252, 253, 0));
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(270deg, #fbfcfd, rgba(251, 252, 253, 0));
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 34s linear infinite;
  will-change: transform;
}

.logo-sequence {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
}

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

.logo-strip a {
  position: relative;
  display: inline-flex;
  min-width: 178px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px 12px 18px;
  color: #102f42;
  background:
    linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.78), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 248, 249, 0.98));
  background-size: 220% 100%, auto;
  border: 1px solid rgba(12, 150, 153, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(16, 29, 38, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  animation: chipGlint 4.8s ease-in-out infinite;
}

.logo-strip a::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(12, 150, 153, 0.11), 0 0 18px rgba(49, 213, 255, 0.45);
  animation: chipPulse 2.1s ease-in-out infinite;
}

.logo-strip a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 8px;
  left: 38px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--aqua), var(--lime), transparent);
  border-radius: 999px;
  opacity: 0.76;
  transform-origin: left;
  animation: chipSignal 2.5s ease-in-out infinite;
}

.logo-strip a:nth-child(2n)::before {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(214, 167, 75, 0.13), 0 0 18px rgba(214, 167, 75, 0.42);
}

.logo-strip a:nth-child(3n)::before {
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(208, 109, 87, 0.12), 0 0 18px rgba(208, 109, 87, 0.38);
}

.logo-strip a:nth-child(4n)::before {
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(184, 242, 109, 0.12), 0 0 18px rgba(184, 242, 109, 0.45);
}

.logo-strip a:nth-child(2n) {
  animation-delay: -1.1s;
}

.logo-strip a:nth-child(3n) {
  animation-delay: -2.2s;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.in-view {
  animation: fadeRise 0.7s ease both;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 122px) clamp(18px, 4vw, 36px);
}

.services,
.faq {
  position: relative;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-heading .eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
  position: relative;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 16% auto auto -4%;
  width: 7px;
  height: 86px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
  border-radius: 999px;
}

.intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.tech-lab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 438px) minmax(360px, 630px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  justify-content: center;
  padding: clamp(76px, 9vw, 118px) clamp(18px, 5vw, 68px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(49, 213, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 213, 255, 0.045) 1px, transparent 1px),
    radial-gradient(ellipse at 78% 28%, rgba(116, 224, 216, 0.18), transparent 34%),
    radial-gradient(ellipse at 18% 82%, rgba(214, 167, 75, 0.12), transparent 30%),
    linear-gradient(135deg, #071018 0%, #0b2633 54%, #111821 100%);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  overflow: hidden;
}

.tech-lab::before,
.tech-lab::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 213, 255, 0.78), transparent);
  animation: labSweep 5.8s linear infinite;
}

.tech-lab::after {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  animation-delay: -2.6s;
}

.tech-lab-copy,
.lab-console {
  position: relative;
  z-index: 1;
}

.tech-lab-copy {
  max-width: 560px;
}

.tech-lab-copy h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.85rem);
}

.tech-lab-copy p:last-child {
  margin: 22px 0 0;
  color: #cce1e6;
  font-size: 1.06rem;
}

.lab-console {
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 38%),
    rgba(5, 18, 26, 0.76);
  border: 1px solid rgba(175, 232, 228, 0.24);
  border-radius: 8px;
  box-shadow: 0 34px 98px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(1.2);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 14px;
  color: #a5c7cf;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.console-top span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9fff5;
}

.console-top span:last-child::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(184, 242, 109, 0.8);
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.console-tile {
  position: relative;
  min-height: 154px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(49, 213, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(175, 232, 228, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.console-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.12), transparent 56%);
  transform: translateX(-115%);
  animation: tileGlint 5.4s ease-in-out infinite;
  pointer-events: none;
}

.console-tile:nth-child(2)::after {
  animation-delay: -1.1s;
}

.console-tile:nth-child(3)::after {
  animation-delay: -2.2s;
}

.console-tile:nth-child(4)::after {
  animation-delay: -3.3s;
}

.console-tile.wide {
  grid-column: span 2;
}

.console-tile span {
  display: block;
  color: #9bc1ca;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-tile strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.route-map {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: center;
}

.route-map i {
  height: 8px;
  background: linear-gradient(90deg, rgba(49, 213, 255, 0.2), rgba(116, 224, 216, 0.98));
  border-radius: 999px;
  animation: routePulse 1.7s ease-in-out infinite;
}

.route-map i:nth-child(2) {
  animation-delay: 0.16s;
}

.route-map i:nth-child(3) {
  animation-delay: 0.32s;
}

.route-map i:nth-child(4) {
  animation-delay: 0.48s;
}

.mini-meter {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.mini-meter i {
  display: block;
  width: var(--meter);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--lime), var(--aqua));
  border-radius: inherit;
  animation: meterBreathe 2.8s ease-in-out infinite;
}

.data-lines {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 8px;
}

.data-lines i {
  height: 7px;
  background: linear-gradient(90deg, rgba(208, 109, 87, 0.86), rgba(49, 213, 255, 0.58), transparent);
  border-radius: 999px;
  animation: dataLine 2.2s ease-in-out infinite;
}

.data-lines i:nth-child(2) {
  width: 76%;
  animation-delay: 0.2s;
}

.data-lines i:nth-child(3) {
  width: 52%;
  animation-delay: 0.4s;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.service-card,
.work-grid article {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(20, 32, 42, 0.07);
  position: relative;
  overflow: hidden;
}

.service-card::after,
.work-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(116, 224, 216, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.service-card::before,
.work-grid article::before,
.timeline li::before,
details::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--aqua), var(--lime), transparent);
  opacity: 0;
  transform: translateX(-38%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.service-card:hover::after,
.service-card:focus-visible::after,
.work-grid article:hover::after {
  opacity: 1;
}

.service-card:hover::before,
.service-card:focus-visible::before,
.work-grid article:hover::before,
.timeline li:hover::before,
details:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.service-card {
  color: inherit;
  text-decoration: none;
  min-height: 242px;
  text-align: left;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 252, 0.98)),
    linear-gradient(135deg, rgba(49, 213, 255, 0.06), transparent);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(12, 150, 153, 0.48);
  box-shadow: var(--shadow-strong);
}

.service-card:focus-visible {
  outline: 3px solid rgba(49, 213, 255, 0.42);
  outline-offset: 3px;
}

.service-card svg,
.work-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--teal);
  filter: drop-shadow(0 8px 14px rgba(12, 150, 153, 0.16));
}

.service-card:nth-child(2) svg {
  color: var(--gold);
}

.service-card:nth-child(3) svg {
  color: var(--coral);
}

.service-card:nth-child(4) svg {
  color: var(--green);
}

.service-card:nth-child(5) svg {
  color: var(--navy);
}

.service-card p,
.work-grid p,
.timeline p,
.faq p {
  margin: 0;
  color: var(--muted);
}

.service-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.service-card-link::after {
  content: "->";
  margin-left: 8px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 24px;
  margin-top: 18px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(49, 213, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 213, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 92% 20%, rgba(116, 224, 216, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(7, 16, 24, 0.99), rgba(9, 87, 94, 0.99));
  background-size: 36px 36px, 36px 36px, auto, auto;
  color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(49, 213, 255, 0.18);
}

.detail-label {
  margin: 0 0 8px;
  color: #93d9d7;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

#detail-copy {
  margin: 0;
  color: #d8e7ea;
}

#detail-points {
  margin: 0;
  padding-left: 20px;
  color: #f4fbfc;
}

.work {
  max-width: none;
  background:
    linear-gradient(90deg, rgba(16, 29, 38, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #eaf7f6 0%, #fbf8ef 58%, #f8f2ec 100%);
  background-size: 42px 42px, auto;
}

.work > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-grid article {
  min-height: 196px;
}

.work-grid article:nth-child(2)::after {
  background: linear-gradient(135deg, rgba(214, 167, 75, 0.14), transparent 42%);
}

.work-grid article:nth-child(3)::after {
  background: linear-gradient(135deg, rgba(208, 109, 87, 0.12), transparent 42%);
}

.process {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 86px);
}

.process h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  background:
    linear-gradient(180deg, #fff, #fbfdfd);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(20, 32, 42, 0.045);
  overflow: hidden;
}

.timeline li:hover,
.work-grid article:hover,
details:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.timeline li,
.work-grid article,
details {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.timeline span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #d98655);
  border-radius: 8px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 32, 42, 0.045);
  overflow: hidden;
}

summary {
  padding: 20px;
  font-weight: 900;
  cursor: pointer;
  color: var(--ink);
}

summary::marker {
  color: var(--teal);
}

details p {
  padding: 0 20px 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
  padding: clamp(70px, 9vw, 116px) clamp(18px, 5vw, 68px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(49, 213, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 213, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 72% 20%, rgba(116, 224, 216, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(16, 29, 38, 0.99), rgba(14, 65, 75, 0.98)),
    url("assets/hero-it-ops.png") center / cover;
  background-size: 54px 54px, 54px 54px, auto, auto, cover;
}

.contact > div {
  max-width: 620px;
}

.contact h2 {
  margin-bottom: 18px;
}

.contact p {
  color: #d5e0e5;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 251, 0.98));
  border-radius: 8px;
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(175, 232, 228, 0.36);
}

label {
  display: grid;
  gap: 7px;
  color: #3b4e5c;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fcfc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  background: #fff;
  border-color: rgba(12, 150, 153, 0.72);
  box-shadow: 0 0 0 4px rgba(12, 150, 153, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.contact-page {
  padding: clamp(70px, 9vw, 110px) clamp(18px, 5vw, 68px);
  background:
    linear-gradient(180deg, rgba(7, 16, 24, 0.9), rgba(9, 57, 67, 0.82)),
    url("assets/hero-it-ops.png") center / cover;
}

.contact-hero-copy {
  max-width: 1180px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.contact-hero-copy h1 {
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  white-space: nowrap;
}

.contact-hero-copy p {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  color: #d5e0e5;
  font-size: 1.08rem;
  white-space: nowrap;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(20px, 4vw, 34px);
  max-width: 1080px;
  margin: 46px auto 0;
}

.contact-sidebar,
.booking-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(175, 232, 228, 0.26);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(7, 16, 24, 0.12);
}

.contact-info-card::before,
.contact-request-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--aqua), var(--lime), transparent);
}

.contact-info-card h2,
.contact-info-card h3,
.contact-request-form h2 {
  margin: 0;
}

.contact-info-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-info-list li,
.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #3b4e5c;
  font-weight: 750;
}

.contact-info-list svg,
.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.contact-benefits-card {
  background: linear-gradient(180deg, #fff, #f5fbfb);
}

.contact-request-form {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 18px 48px rgba(7, 16, 24, 0.16);
}

.contact-stepper {
  display: grid;
  grid-template-columns: auto minmax(42px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 0 0 22px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
}

.contact-stepper span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #5f7480;
  font-weight: 900;
}

.contact-stepper strong {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #52717c;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.contact-stepper em {
  font-style: normal;
}

.contact-stepper i {
  height: 2px;
  background: linear-gradient(90deg, rgba(12, 150, 153, 0.18), rgba(184, 242, 109, 0.2));
}

.contact-stepper span.active {
  color: var(--ink);
}

.contact-stepper span.active strong {
  color: #062f35;
  background: linear-gradient(135deg, var(--aqua), var(--lime));
  border-color: transparent;
}

.form-step {
  display: grid;
  gap: 22px;
}

.form-step[hidden] {
  display: none;
}

.option-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.option-group legend {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 900;
}

.choice-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.choice-chip {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 12px;
  color: #36505b;
  background: #f8fcfc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.choice-chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-chip:has(input:checked) {
  color: #07343b;
  background: linear-gradient(135deg, rgba(49, 213, 255, 0.2), rgba(184, 242, 109, 0.18));
  border-color: rgba(12, 150, 153, 0.58);
  box-shadow: 0 10px 24px rgba(12, 150, 153, 0.12);
}

.choice-chip:focus-within,
.choice-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(12, 150, 153, 0.5);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding-top: 4px;
}

.form-actions.split-end {
  justify-content: end;
}

.contact-faq {
  background: #f7fbfb;
}

.sites-hero {
  padding: clamp(76px, 9vw, 118px) clamp(18px, 5vw, 68px) clamp(42px, 7vw, 76px);
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 74% 18%, rgba(49, 213, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(7, 16, 24, 0.96), rgba(9, 70, 80, 0.9)),
    url("assets/hero-it-ops.png") center / cover;
}

.sites-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

.sites-hero p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: #d5e8eb;
  font-size: 1.08rem;
}

.sites-showcase {
  background: #f7fbfb;
}

.showcase-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.showcase-toolbar button {
  min-height: 40px;
  padding: 9px 14px;
  color: #33515c;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.showcase-toolbar button:hover,
.showcase-toolbar button.active {
  color: #062f35;
  background: linear-gradient(135deg, rgba(49, 213, 255, 0.16), rgba(184, 242, 109, 0.14));
  border-color: rgba(12, 150, 153, 0.48);
}

.site-count {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 900;
}

.site-count strong {
  color: var(--teal);
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}

.site-card {
  display: grid;
  gap: 12px;
  min-height: 330px;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(20, 32, 42, 0.07);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 150, 153, 0.36);
  box-shadow: var(--shadow);
}

.site-card[hidden] {
  display: none;
}

.site-category {
  justify-self: start;
  padding: 6px 9px;
  color: #07515a;
  background: rgba(49, 213, 255, 0.12);
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 900;
}

.site-card h2 {
  font-size: 1.08rem;
}

.site-card p {
  margin: 0;
  color: var(--muted);
}

.site-card small {
  align-self: end;
  color: #6f8590;
  font-weight: 800;
}

.site-preview {
  display: grid;
  gap: 8px;
  min-height: 132px;
  aspect-ratio: 3 / 2;
  padding: 14px;
  background: linear-gradient(135deg, #0c3f49, #10212c);
  border-radius: 8px;
  overflow: hidden;
}

.site-image-preview {
  display: block;
  padding: 0;
  background: #eef4f6;
  border: 1px solid rgba(12, 150, 153, 0.16);
}

.site-image-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.28s ease;
}

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

.site-preview i {
  display: block;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.site-preview i:first-child {
  width: 52%;
  height: 12px;
  background: var(--lime);
}

.site-preview i:nth-child(2) {
  height: 44px;
}

.site-preview i:nth-child(3) {
  width: 76%;
  height: 10px;
}

.restaurant-preview {
  background: linear-gradient(135deg, #51331d, #0f2b31);
}

.healthcare-preview {
  background: linear-gradient(135deg, #0d5462, #f3fbfb);
}

.healthcare-preview i {
  background: rgba(12, 150, 153, 0.18);
}

.retail-preview {
  background: linear-gradient(135deg, #273044, #0f6a70);
}

.form-preview,
.booking-preview {
  background: linear-gradient(135deg, #0a3038, #0e6a74);
}

.dashboard-preview {
  background: linear-gradient(135deg, #071018, #0b5260);
}

.site-showcase-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(56px, 8vw, 90px) clamp(18px, 5vw, 68px);
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--night), #0c5260);
}

.site-showcase-cta h2,
.site-showcase-cta p {
  margin: 0;
}

.site-showcase-cta p {
  max-width: 660px;
  color: #d5e8eb;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 5vw, 68px);
  color: #536776;
  background: #fff;
  border-top: 1px solid var(--line);
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes floatSmall {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -12px, 0);
  }
}

@keyframes floatNetwork {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.4deg);
  }
  38% {
    transform: translate3d(14px, -14px, 0) rotate(0.5deg);
  }
  68% {
    transform: translate3d(5px, -4px, 0) rotate(-0.2deg);
  }
}

@keyframes floatCamera {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0.35deg);
  }
  42% {
    transform: translate3d(-12px, -16px, 0) rotate(-0.55deg);
  }
  72% {
    transform: translate3d(-4px, -5px, 0) rotate(0.2deg);
  }
}

@keyframes statusSweep {
  0%,
  40% {
    transform: translateX(-112%);
  }
  70%,
  100% {
    transform: translateX(112%);
  }
}

@keyframes statusMeter {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.55);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes scanAcross {
  0% {
    transform: translateX(-18vw);
    opacity: 0;
  }
  14%,
  78% {
    opacity: 1;
  }
  100% {
    transform: translateX(72vw);
    opacity: 0;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.62;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes spinOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseBar {
  0%,
  100% {
    transform: scaleY(0.78);
    opacity: 0.82;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes chipGlint {
  0%,
  42% {
    background-position: 180% 0, 0 0;
    transform: translateY(0);
  }
  54% {
    background-position: 20% 0, 0 0;
    transform: translateY(-2px);
  }
  100% {
    background-position: -60% 0, 0 0;
    transform: translateY(0);
  }
}

@keyframes chipPulse {
  0%,
  100% {
    transform: scale(0.86);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes chipSignal {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.32);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes labSweep {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(220%);
  }
}

@keyframes tileGlint {
  0%,
  38% {
    transform: translateX(-115%);
  }
  62%,
  100% {
    transform: translateX(115%);
  }
}

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.58);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes meterBreathe {
  0%,
  100% {
    filter: saturate(0.9);
    transform: scaleX(0.94);
    transform-origin: left;
  }
  50% {
    filter: saturate(1.25);
    transform: scaleX(1);
  }
}

@keyframes dataLine {
  0%,
  100% {
    opacity: 0.46;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(12px);
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes webShine {
  0%,
  45% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes pulseWidth {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleX(0.92);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes floatDevice {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes lineReveal {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.74);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .voip-page .service-hero,
  .cctv-page .service-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding-top: clamp(64px, 8vw, 86px);
    padding-bottom: clamp(42px, 6vw, 62px);
  }

  .voip-page .service-hero-content,
  .cctv-page .service-hero-content {
    max-width: 820px;
  }

  .voip-page .service-hero h1,
  .cctv-page .service-hero h1 {
    max-width: 820px;
  }

  .voip-page .service-hero-copy,
  .cctv-page .service-hero-copy {
    max-width: 760px;
  }

  .voip-page .voip-media-panel,
  .cctv-page .cctv-media-panel {
    width: min(100%, 720px);
    justify-self: center;
  }

  .voip-page .voip-media-main {
    min-height: clamp(320px, 48vw, 440px);
    overflow: hidden;
  }

  .voip-page .voip-media-main img {
    width: min(100%, 720px);
    max-width: 100%;
    margin: 0 auto;
  }

  .cctv-page .cctv-media-main,
  .cctv-page .cctv-camera-cluster {
    min-height: clamp(360px, 52vw, 460px);
  }

  .cctv-page .cctv-camera-system {
    right: clamp(20px, 7vw, 64px);
    width: min(62%, 390px);
  }

  .cctv-page .cctv-camera-bullet,
  .cctv-page .cctv-camera-dual,
  .cctv-page .cctv-camera-wifi {
    width: clamp(112px, 18vw, 158px);
  }
}

@media (max-width: 920px) {
  .scroll-progress {
    right: 5px;
    width: 8px;
    opacity: 0.86;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav .nav-cta[data-customer-session="active"] {
    max-width: none;
    justify-content: flex-start;
  }

  .site-nav .nav-logout {
    justify-content: flex-start;
    width: 100%;
    margin-top: 4px;
    padding: 12px;
  }

  .nav-dropdown {
    display: grid;
    padding: 0;
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0 0 4px 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    padding: 8px 12px;
    white-space: normal;
  }

  .intro,
  .tech-lab,
  .service-hero,
  .service-overview,
  .process,
  .contact,
  .contact-layout,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .tech-lab {
    padding-left: clamp(18px, 4vw, 36px);
    padding-right: clamp(18px, 4vw, 36px);
    justify-content: stretch;
  }

  .storefront-head,
  .store-layout {
    grid-template-columns: 1fr;
  }

  .storefront-tools {
    justify-content: flex-start;
  }

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

  .cart-summary {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid,
  .work-grid,
  .service-feature-grid,
  .equipment-grid,
  .product-grid,
  .buying-strip,
  .web-option-grid,
  .web-lab-grid,
  .web-effect-grid,
  .web-showroom-grid,
  .blueprint-flow,
  .sites-grid,
  .deliverable-grid,
  .related-service-grid,
  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equipment-card {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 220px;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .comparison-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-table {
    border: 0;
    gap: 10px;
    overflow: visible;
  }

  .comparison-row,
  .comparison-row.header {
    grid-template-columns: 1fr;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .comparison-row.header {
    display: none;
  }

  .equipment-card img {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .contact-hero-copy h1,
  .contact-hero-copy p {
    white-space: normal;
  }

  .hero-live-stack {
    position: relative;
    right: auto;
    top: auto;
    z-index: 2;
    order: 2;
    width: min(100%, 520px);
    margin-top: 28px;
  }

  .hero-content {
    order: 1;
  }

  .hero-panel {
    order: 3;
  }

  .mini-live-card {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    margin-top: 10px;
  }

  .voip-page .service-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 72px;
  }

  .voip-page .service-hero h1 {
    max-width: 780px;
  }

  .voip-page .voip-media-panel {
    width: 100%;
    max-width: 680px;
    overflow: hidden;
  }

  .cctv-page .service-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 72px;
  }

  .cctv-page .service-hero h1 {
    max-width: 780px;
  }

  .cctv-page .cctv-media-panel {
    width: min(100%, 680px);
  }
}

@media (max-width: 1100px) {
  .contact-hero-copy h1 {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .scroll-progress {
    top: 68px;
    bottom: 12px;
    width: 7px;
  }

  .site-header {
    gap: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-toggle {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    width: 82px;
    padding: 2px;
  }

  .lang-button {
    min-width: 34px;
    height: 28px;
    padding: 0 6px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .service-hero {
    min-height: auto;
    padding-top: 92px;
  }

  .voip-page .service-hero {
    min-height: auto;
    gap: 18px;
    padding: 58px 16px 34px;
    overflow: hidden;
  }

  .cctv-page .service-hero {
    min-height: auto;
    padding: 62px 18px 38px;
  }

  .voip-page .service-hero h1 {
    max-width: 100%;
    font-size: clamp(1.82rem, 9.4vw, 2.65rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .cctv-page .service-hero h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .voip-page .service-hero-copy {
    margin-top: 14px;
    max-width: 100%;
    font-size: 0.96rem;
  }

  .cctv-page .service-hero-copy {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .voip-hero-badges {
    gap: 8px;
    margin-top: 18px;
  }

  .cctv-hero-badges {
    gap: 8px;
    margin-top: 18px;
  }

  .voip-hero-badges span {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 0.76rem;
  }

  .cctv-hero-badges span {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 0.76rem;
  }

  .voip-page .service-hero-actions {
    margin-top: 20px;
  }

  .cctv-page .service-hero-actions {
    margin-top: 20px;
  }
  .voip-page .voip-media-panel {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 18, 26, 0.95), rgba(10, 18, 26, 0.62)),
      linear-gradient(0deg, rgba(10, 18, 26, 0.72), transparent 54%);
  }

  .hero-tech-overlay {
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 82%);
  }

  .hero-panel,
  .service-grid,
  .work-grid,
  .service-mini-metrics,
  .service-feature-grid,
  .equipment-grid,
  .product-grid,
  .buying-strip,
  .web-option-grid,
  .web-lab-grid,
  .web-effect-grid,
  .web-showroom-grid,
  .blueprint-flow,
  .sites-grid,
  .deliverable-grid,
  .related-service-grid,
  .choice-grid,
  .form-grid,
  .service-cta-card,
  .console-grid {
    grid-template-columns: 1fr;
  }

  .storefront-head,
  .store-layout,
  .product-card {
    grid-template-columns: 1fr;
  }

  .storefront-promise {
    grid-template-columns: 1fr;
  }

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

  .cart-summary {
    grid-template-columns: 1fr;
  }

  .cart-line {
    padding: 10px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-buy-row {
    grid-template-columns: 1fr;
  }

  .product-buy-row .button {
    width: 100%;
  }

  .equipment-visual {
    min-height: 320px;
    padding: 0 12px;
  }

  .equipment-visual img {
    width: 100%;
    min-height: 300px;
  }

  .console-tile.wide {
    grid-column: auto;
  }

  .console-tile {
    min-height: 136px;
  }

  .voip-page .voip-media-main {
    min-height: 260px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .voip-page .voip-media-main img {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin: 0;
  }

  .cctv-page .cctv-media-main {
    min-height: 340px;
  }

  .cctv-page .cctv-camera-cluster {
    min-height: 340px;
  }

  .cctv-page .cctv-camera-system {
    right: 16px;
    bottom: 22px;
    width: min(74%, 310px);
  }

  .cctv-page .cctv-camera-bullet,
  .cctv-page .cctv-camera-dual,
  .cctv-page .cctv-camera-wifi {
    width: clamp(94px, 30vw, 126px);
  }

  .cctv-page .cctv-camera-bullet {
    top: 36px;
    left: 6px;
  }

  .cctv-page .cctv-camera-dual {
    top: 82px;
    right: 0;
  }

  .cctv-page .cctv-camera-wifi {
    bottom: 42px;
    left: 18px;
  }

  .hero-live-stack {
    margin-top: 24px;
  }

  .main-live-card {
    padding: 14px;
  }

  .signal-bars {
    height: 76px;
  }

  .hero-panel div {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .service-step {
    grid-template-columns: 1fr;
  }

  .service-cta-card {
    align-items: stretch;
  }
}
