/* OM INFOTECH — Design System */
:root {
  --brand-ink: #0a1628;
  --brand-slate: #1a2d45;
  --brand-teal: #0f766e;
  --brand-teal-bright: #14b8a6;
  --brand-teal-soft: #ccfbf1;
  --brand-amber: #c2410c;
  --brand-amber-hover: #9a3412;
  --surface: #f4f8f9;
  --surface-elevated: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --text-on-dark: #e2e8f0;
  --border: #d6e4e8;
  --shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
  --radius: 4px;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --container: min(1120px, calc(100% - 2.5rem));
  --topbar-h: 38px;
  --header-h: 72px;
  --chrome-h: calc(var(--topbar-h) + var(--header-h));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* —— Top bar + Header —— */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar {
  height: var(--topbar-h);
  background: var(--brand-ink);
  color: #cbd5e1;
  font-size: 0.8rem;
}

.top-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #f8fafc;
  white-space: nowrap;
}

.top-bar-phone:hover {
  color: var(--brand-teal-bright);
}

.top-bar-phone svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #94a3b8;
  transition: color 0.2s, background 0.2s;
}

.top-bar-social a:hover {
  color: #fff;
  background: rgba(20, 184, 166, 0.25);
}

.top-bar-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.site-header {
  height: var(--header-h);
  background: rgba(244, 248, 249, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-chrome.is-scrolled .site-header {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--brand-ink);
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-shrink: 0;
}

.logo span {
  color: var(--brand-teal);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--brand-ink);
  background: var(--brand-teal-soft);
}

.nav-cta {
  margin-left: 0.5rem;
  background: var(--brand-ink) !important;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
}

.nav-cta:hover {
  background: var(--brand-slate) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface-elevated);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand-ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--brand-ink);
  color: var(--text-on-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--brand-ink);
  background-image:
    linear-gradient(105deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.55) 42%, rgba(10, 22, 40, 0.35) 100%),
    url("../images/hero-cctv.png");
  background-size: cover;
  background-position: center right;
}

.hero-bg::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
  padding: 3.25rem 0 3.75rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.1s forwards;
}

.hero-brand em {
  font-style: normal;
  color: var(--brand-teal-bright);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  letter-spacing: -0.02em;
  max-width: 32ch;
  margin-bottom: 0.75rem;
  color: #f8fafc;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.25s forwards;
}

.hero-lead {
  max-width: 42ch;
  color: #94a3b8;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.4s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.55s forwards;
}

/* —— Home category slider —— */
.hero-slider {
  position: relative;
  min-height: min(82vh, 680px);
  background: var(--brand-ink);
  color: var(--text-on-dark);
  overflow: hidden;
}

.hero-slider .slides {
  position: relative;
  min-height: inherit;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.85s var(--ease), visibility 0.85s;
  z-index: 1;
}

.hero-slider .slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.slide-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--brand-ink);
}

.slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.62) 40%, rgba(10, 22, 40, 0.28) 100%);
  z-index: 1;
}

.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 7s linear;
}

.hero-slider .slide.is-active .slide-media img {
  transform: scale(1);
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 5.5rem;
  width: var(--container);
  margin-inline: auto;
}

.hero-slider .hero-brand {
  animation: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease) 0.1s, transform 0.55s var(--ease) 0.1s;
}

.slide-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-teal-bright);
  margin-bottom: 0.55rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease) 0.18s, transform 0.55s var(--ease) 0.18s;
}

.hero-slider .slide h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: -0.03em;
  max-width: 22ch;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: #f8fafc;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease) 0.26s, transform 0.55s var(--ease) 0.26s;
}

.hero-slider .hero-lead,
.hero-slider .hero-actions {
  animation: none;
  opacity: 0;
  transform: translateY(18px);
}

.hero-slider .hero-lead {
  transition: opacity 0.55s var(--ease) 0.34s, transform 0.55s var(--ease) 0.34s;
}

.hero-slider .hero-actions {
  transition: opacity 0.55s var(--ease) 0.42s, transform 0.55s var(--ease) 0.42s;
}

.hero-slider .slide.is-active .hero-brand,
.hero-slider .slide.is-active .slide-tag,
.hero-slider .slide.is-active h1,
.hero-slider .slide.is-active .hero-lead,
.hero-slider .slide.is-active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.35rem;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: var(--container);
  margin-inline: auto;
  pointer-events: none;
}

.slider-controls > * {
  pointer-events: auto;
}

.slider-nav {
  display: flex;
  gap: 0.45rem;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 22, 40, 0.45);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.slider-btn:hover {
  background: rgba(20, 184, 166, 0.9);
  border-color: transparent;
  color: var(--brand-ink);
  transform: translateY(-1px);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, width 0.25s;
}

.slider-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--brand-teal-bright);
}

.slider-progress {
  width: 88px;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  justify-self: end;
}

.slider-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--brand-teal-bright);
  border-radius: inherit;
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: min(88vh, 620px);
  }

  .slide-content {
    padding: 2.5rem 0 5.25rem;
  }

  .slider-controls {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.75rem;
    bottom: 1rem;
  }

  .slider-progress {
    width: 100%;
    justify-self: stretch;
    order: -1;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-teal-bright);
  color: var(--brand-ink);
}

.btn-primary:hover {
  background: #2dd4bf;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-dark {
  background: var(--brand-ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--brand-slate);
}

.btn-outline {
  background: transparent;
  color: var(--brand-ink);
  border: 1px solid var(--brand-ink);
}

.btn-outline:hover {
  background: var(--brand-ink);
  color: #fff;
}

.btn-amber {
  background: var(--brand-amber);
  color: #fff;
}

.btn-amber:hover {
  background: var(--brand-amber-hover);
}

/* —— Sections —— */
.section {
  padding: 2.5rem 0;
}

.section-alt {
  background: var(--surface-elevated);
}

.section-dark {
  background: var(--brand-ink);
  color: var(--text-on-dark);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 0.45rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--brand-ink);
  margin-bottom: 0.55rem;
  max-width: 24ch;
}

.section-dark .section-title {
  color: #f8fafc;
}

.section-desc {
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 1.25rem;
}

.section-dark .section-desc {
  color: #94a3b8;
}

.section-head {
  margin-bottom: 1.35rem;
}

/* —— Page hero (inner) —— */
.page-hero {
  position: relative;
  padding: 3.25rem 0 2.75rem;
  background: var(--brand-ink);
  color: var(--text-on-dark);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(20, 184, 166, 0.22), transparent 50%),
    linear-gradient(135deg, #0a1628, #123040 60%, #0d3d38);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-label {
  color: var(--brand-teal-bright);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.page-hero p {
  color: #94a3b8;
  max-width: 48ch;
  font-size: 0.98rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.breadcrumb a:hover {
  color: var(--brand-teal-bright);
}

.breadcrumb span {
  color: #94a3b8;
}

/* —— Category grid —— */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.category-link {
  display: grid;
  grid-template-rows: 180px auto;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.category-link:hover {
  border-color: var(--brand-teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.category-media {
  position: relative;
  overflow: hidden;
  background: var(--brand-slate);
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.category-link:hover .category-media img {
  transform: scale(1.06);
}

.category-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.category-link h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--brand-ink);
}

.category-link p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.category-link .arrow {
  font-weight: 700;
  color: var(--brand-teal);
  font-size: 0.85rem;
}

/* —— Feature strip —— */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.feature-item {
  background: var(--surface-elevated);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin-bottom: 0.35rem;
}

.feature-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* —— Two column —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split-visual {
  min-height: 360px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: var(--brand-slate);
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.split-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.7), transparent 55%);
  pointer-events: none;
}

.split-visual .visual-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  max-width: 16ch;
  line-height: 1.25;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  background: var(--brand-teal-soft);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--brand-teal);
}

/* —— Product list —— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-item {
  padding: 1.35rem 1.4rem;
  background: var(--surface-elevated);
  border-left: 3px solid var(--brand-teal);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.product-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--brand-ink);
}

.product-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.brand-tags span,
.brand-tags .brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem 0.28rem 0.3rem;
  background: #0a1628;
  color: #f8fafc;
  border: 1px solid #0a1628;
  border-radius: 4px;
}

.brand-tags .brand-chip img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  background: #fff;
  border-radius: 3px;
  padding: 1px;
  flex-shrink: 0;
}

.brand-tags .brand-chip b {
  font-weight: 800;
  color: #5eead4;
  letter-spacing: 0.03em;
}

/* —— Clients —— */
.client-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.client-cloud span {
  padding: 0.55rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-slate);
}

/* —— Logo strips —— */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.5rem;
}

.logo-strip .brand-tile {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 0.3rem;
  padding: 0.5rem 0.35rem;
  min-height: 0;
  border-radius: 6px;
}

.logo-strip .brand-logo {
  width: 30px;
  height: 30px;
  padding: 4px;
  border-radius: 6px;
  margin-inline: auto;
}

.logo-strip .brand-name {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.logo-strip .brand-name small {
  display: none;
}

.brand-tile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 72px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.brand-tile:hover {
  border-color: var(--brand-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.brand-tile .brand-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #eef2f5;
  overflow: hidden;
  padding: 6px;
}

.brand-tile .brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  background: transparent;
}

.brand-tile .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.brand-tile .brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  letter-spacing: 0;
}

/* —— Client logo slider (continuous single line) —— */
.client-slider {
  position: relative;
  margin-top: 0.35rem;
}

.client-slider-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.client-slider-track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  animation: clientMarquee 28s linear infinite;
  will-change: transform;
}

.client-slider:hover .client-slider-track {
  animation-play-state: paused;
}

.client-slider .brand-tile {
  flex: 0 0 160px;
  width: 160px;
  height: 64px;
  min-height: 64px;
  max-width: 160px;
  box-sizing: border-box;
  padding: 0.5rem 0.65rem;
  gap: 0.5rem;
  margin: 0;
}

.client-slider .brand-logo {
  width: 32px;
  height: 32px;
  min-width: 32px;
  padding: 4px;
}

.client-slider .brand-name {
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.client-slider .brand-name small {
  display: none;
}

.client-slider-btn {
  display: none;
}

@keyframes clientMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-slider-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

.product-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-shot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--brand-slate);
  aspect-ratio: 4 / 3;
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Compact product catalogue cards */
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.product-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: var(--brand-teal);
  box-shadow: var(--shadow);
}

.product-card-media {
  width: 88px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--brand-slate);
  flex-shrink: 0;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  min-width: 0;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.product-card-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-body .brand-tags {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.product-card-body .brand-tags span,
.product-card-body .brand-tags .brand-chip {
  font-size: 0.68rem;
  padding: 0.2rem 0.45rem 0.2rem 0.25rem;
}

.product-card-body .brand-tags .brand-chip img {
  width: 15px;
  height: 15px;
}

.btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
}

/* —— Careers —— */
.careers-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: end;
}

.careers-dept-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.careers-dept-pills span {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--brand-teal-soft);
  color: var(--brand-ink);
}

.jobs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.jobs-filter {
  margin-bottom: 0;
  min-width: 220px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.job-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.job-card:hover {
  border-color: var(--brand-teal);
  box-shadow: var(--shadow);
}

.job-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.job-dept {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-teal);
}

.job-type {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
}

.job-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-ink);
  line-height: 1.25;
}

.job-summary {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  flex: 1;
}

.job-meta {
  list-style: none;
  font-size: 0.8rem;
  color: var(--brand-slate);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0.15rem 0 0.35rem;
}

.job-meta strong {
  color: var(--brand-ink);
}

.careers-apply {
  max-width: 820px;
}

@media (max-width: 960px) {
  .careers-intro,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .careers-dept-pills {
    justify-content: flex-start;
  }
}

.brand-strip-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

@media (max-width: 960px) {
  .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-cards {
    grid-template-columns: 1fr;
  }
}

.page-hero.has-image::before {
  background:
    linear-gradient(105deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.65) 50%, rgba(10, 22, 40, 0.4) 100%),
    var(--page-hero-image, none);
  background-size: cover;
  background-position: center;
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--brand-slate);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .g-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.85));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.g-bg-1,
.g-bg-2,
.g-bg-3,
.g-bg-4,
.g-bg-5,
.g-bg-6 {
  display: none;
}

/* —— Contact / Form —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.contact-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-card:last-of-type {
  border-bottom: none;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-teal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-card p,
.contact-card a {
  color: var(--text);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--brand-teal);
}

.form-panel {
  background: var(--surface-elevated);
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--brand-ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  padding: 1rem;
  background: var(--brand-teal-soft);
  color: var(--brand-ink);
  border-radius: var(--radius);
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-success.is-shown {
  display: block;
}

/* —— CTA band —— */
.cta-band {
  padding: 2.5rem 0;
  background:
    radial-gradient(ellipse 70% 100% at 10% 50%, rgba(20, 184, 166, 0.2), transparent 50%),
    var(--brand-ink);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

/* —— OM philosophy (About) —— */
.om-myth {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 15% 50%, rgba(20, 184, 166, 0.12), transparent 55%),
    linear-gradient(135deg, #061018 0%, #0a1628 45%, #0d3d38 100%);
  color: var(--text-on-dark);
}

.om-myth-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.om-symbol {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--brand-teal-bright);
  text-shadow: 0 0 40px rgba(20, 184, 166, 0.25);
  user-select: none;
}

.om-myth .section-label {
  color: var(--brand-teal-bright);
}

.om-myth .section-title {
  color: #f8fafc;
  max-width: 22ch;
}

.om-myth .section-desc {
  color: #94a3b8;
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

.om-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.om-pillar {
  padding: 1rem 0.9rem;
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.om-pillar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #f8fafc;
  margin-bottom: 0.25rem;
}

.om-pillar span {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.4;
}

@media (max-width: 960px) {
  .om-myth-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .om-symbol {
    margin-inline: auto;
  }

  .om-pillars {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .om-myth .section-title,
  .om-myth .section-desc {
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .om-pillars {
    grid-template-columns: 1fr;
  }
}

.cta-band p {
  color: #94a3b8;
  margin-bottom: 1.75rem;
  max-width: 40ch;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* —— Footer —— */
.site-footer {
  background: #061018;
  color: #94a3b8;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand span {
  color: var(--brand-teal-bright);
}

.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--brand-teal-bright);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem 1.25rem;
  font-size: 0.85rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.1rem;
}

.footer-visitors {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
}

.footer-visitors strong {
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.footer-credit a {
  color: var(--brand-teal-bright);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: #fff;
}

/* —— WhatsApp float —— */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float .wa-label {
  position: absolute;
  right: calc(100% + 10px);
  white-space: nowrap;
  background: var(--brand-ink);
  color: #fff;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .wa-label {
  opacity: 1;
}

/* —— Cert badges —— */
.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cert-badge {
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: var(--brand-teal-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

/* —— Development sub-services —— */
.service-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-block {
  padding: 1.75rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--brand-teal);
}

.service-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--brand-ink);
}

.service-block p {
  color: var(--text-muted);
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 1.75rem;
  }

  .gallery-grid,
  .product-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-strip {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .logo-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .client-slider .brand-tile {
    flex: 0 0 140px;
    width: 140px;
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100% - 1.75rem, 1120px);
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--chrome-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: 0.5rem;
  }

  .category-grid,
  .product-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 3rem 0 3.5rem;
  }

  .feature-strip {
    margin-top: 0;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2rem 0;
  }
}

@media (max-width: 520px) {
  .gallery-grid,
  .product-media-grid {
    grid-template-columns: 1fr;
  }

  .logo-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .whatsapp-float .wa-label {
    display: none;
  }

  .top-bar {
    font-size: 0.72rem;
  }

  .top-bar-phone span.label {
    display: none;
  }
}

/* Print / reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
