:root {
  --primary: #ff9933;
  --primary-2: #ffc285;
  --ink: #0b1f2a;
  --navy: #002b44;
  --muted: rgba(11, 31, 42, 0.72);
  --bg: #ffffff;
  --panel: rgba(255, 255, 255, 0.78);
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.85;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.muted {
  color: rgba(255, 255, 255, 0.8);
}

/* Topbar */
.topbar {
  background: #000;
  color: #fff;
  margin: 0;
  transition: background 260ms ease;
}

/* Home hero overlay mode (transparent at top, normal look after scroll) */
body.has-hero-video {
  --overlay-topbar-h: 44px;
}

body.has-hero-video .topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1102;
  background: transparent;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
  transition: padding 260ms ease;
}

.topbar.is-scrolled {
  background: #000;
}

body.has-hero-video .topbar.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000 !important;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.topbar.is-scrolled .topbar__inner {
  padding: 7px 0;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.topbar__textLink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.topbar__extIcon {
  font-size: 12px;
  line-height: 1;
  opacity: 0.9;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
  background: #fff;
  color: var(--navy);
  transition: transform 240ms ease, background 240ms ease;
}

.chip:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

body.has-hero-video .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1101;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.header::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.55), transparent);
  opacity: 0;
  transition: opacity 260ms ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 43, 68, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

body.has-hero-video .header.is-scrolled {
  position: fixed;
  top: var(--overlay-topbar-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom-color: rgba(0, 43, 68, 0.16) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

.header.is-scrolled::after {
  opacity: 1;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row-reverse;
  gap: 14px;
  padding: 14px 0;
  /* Force navbar group to stay on the RIGHT */
  direction: ltr;
  transition: padding 240ms ease;
}

.header.is-scrolled .header__inner {
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: rtl;
  position: relative;
}

.brand__mark {
  font-weight: 900;
  letter-spacing: 0.4px;
  font-size: 26px;
  color: var(--navy);
}

.brand__logoImg {
  width: clamp(84px, 8.8vw, 118px);
  height: auto;
  display: block;
}

.brand__mark--accent {
  color: var(--primary);
  text-shadow: 0 0 12px rgba(255, 153, 51, 0.28);
}

.brand__tag {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  direction: rtl;
}

.nav__menu {
  position: relative;
  border: 1px solid rgba(0, 43, 68, 0.09);
  border-radius: 14px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.nav__menu::after {
  content: "";
  position: absolute;
  inset: -18px -22px;
  border-radius: 999px;
  background: radial-gradient(220px 80px at 30% 50%, rgba(255, 153, 51, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.header:hover .nav__menu::after {
  opacity: 1;
}

.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 46px;
  height: 42px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.nav__toggleLines {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin-inline: auto;
  position: relative;
}

.nav__toggleLines::before,
.nav__toggleLines::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  background: var(--navy);
}

.nav__toggleLines::before {
  top: -6px;
}

.nav__toggleLines::after {
  top: 6px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
  padding: 9px 10px;
  min-height: 38px;
  border-radius: 10px;
  transition: background 240ms ease, transform 240ms ease, color 240ms ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav__menu > .btn {
  min-height: 38px;
  line-height: 1.2;
  align-self: center;
  white-space: nowrap;
}

.nav__extIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.nav__link::after {
  content: "";
  position: absolute;
  inset-inline: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.12), rgba(255, 153, 51, 0.95));
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

.nav__link,
.btn {
  -webkit-tap-highlight-color: transparent;
}

.nav__link.is-active {
  background: linear-gradient(180deg, rgba(255, 153, 51, 0.24), rgba(255, 153, 51, 0.14));
  border: 1px solid rgba(255, 153, 51, 0.38);
}

.nav__link.is-active::after,
.nav__link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav__link:hover {
  background: rgba(255, 153, 51, 0.14);
  color: #111;
  transform: translateY(-1px);
}

.nav__link:focus-visible,
.btn:focus-visible,
.chip:focus-visible,
.footer__link:focus-visible {
  outline: 3px solid rgba(255, 153, 51, 0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Mobile overlay */
.nav__backdrop {
  display: none;
}

@media (max-width: 760px) {
  .nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .nav__backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Why key points */
.whyKeypoints {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.whyKeypoints__item {
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: calc(var(--radius-sm) + 4px);
  background:
    radial-gradient(240px 110px at 90% 10%, rgba(255, 153, 51, 0.16), transparent 66%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  display: grid;
  gap: 6px;
  align-content: start;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.whyKeypoints__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 153, 51, 0.36);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.whyKeypoints__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 51, 0.36);
  background: rgba(255, 153, 51, 0.14);
  color: #9c4f00;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}

.whyKeypoints__item h3 {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 22px);
  color: var(--navy);
  line-height: 1.45;
}

.whyKeypoints__item p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

/* Process flow chart */
.processFlow {
  list-style: none;
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(680px 280px at 88% 12%, rgba(255, 153, 51, 0.18), transparent 64%),
    radial-gradient(680px 280px at 20% 92%, rgba(0, 43, 68, 0.10), transparent 64%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.processFlow__item {
  position: relative;
  border: 1px solid rgba(0, 43, 68, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  padding: 18px;
  display: grid;
  gap: 8px;
  min-height: 196px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.processFlow__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 153, 51, 0.36);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.processFlow__stepNo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 51, 0.36);
  background: rgba(255, 153, 51, 0.14);
  color: #9c4f00;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
}

.processFlow__title {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--navy);
  line-height: 1.5;
}

.processFlow__desc {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.95;
}

.processFlow__arrow {
  position: absolute;
  inset-inline-start: auto;
  inset-inline-end: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 51, 0.36);
  background: rgba(255, 153, 51, 0.14);
  display: grid;
  place-items: center;
  color: #9c4f00;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  z-index: 2;
}

#process.section {
  padding-block: 92px;
}

#process .section__head {
  margin-bottom: 30px;
}

/* Marquee (pixel-distance method) */
.marquee {
  --marquee-distance: 0px;
  --marquee-duration: 20s;

  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(0, 43, 68, 0.03);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.marquee__viewport {
  overflow: hidden;
  direction: ltr;
}

.marquee__runner {
  display: flex;
  align-items: center;
  width: max-content;
  direction: ltr;
  will-change: transform;
  animation: marqueeRun var(--marquee-duration) linear infinite;
}

.marquee__content {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
  min-width: max-content;
  padding-inline: 8px;
  direction: ltr;
  unicode-bidi: plaintext;
}

.marquee:hover .marquee__runner,
.marquee.is-paused .marquee__runner {
  animation-play-state: paused;
}

.marquee.is-static .marquee__runner {
  animation: none;
  transform: translate3d(0, 0, 0);
}

@keyframes marqueeRun {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--marquee-distance)), 0, 0);
  }
}

.marquee__chip {
  display: none;
}

.marquee__text {
  display: inline-block;
  padding-inline: 4px;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}

.marquee__sep {
  display: inline-block;
  padding-inline: 6px;
  color: rgba(0, 43, 68, 0.5);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__runner {
    animation: none !important;
    transform: none !important;
  }
}

/* FAQ */
.faq {
  display: grid;
  gap: 14px;
}

.faq__item {
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: calc(var(--radius-sm) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 153, 51, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  font-size: 17px;
  color: var(--navy);
  text-align: start;
}

.faq__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0, 43, 68, 0.16);
  display: grid;
  place-items: center;
  background: rgba(255, 153, 51, 0.15);
  color: #9c4f00;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.faq__a {
  padding: 0 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
  display: none;
}

.faq__item.is-open .faq__a {
  display: block;
  padding-bottom: 16px;
}

.faq__item.is-open .faq__q {
  background: rgba(255, 153, 51, 0.08);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #111;
}

/* Loading Overlay */
.loadingOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.loadingOverlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loadingOverlay__spinner {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  border-top-color: var(--primary);
  animation-duration: 1.2s;
}

.spinner-ring:nth-child(2) {
  width: 70%;
  height: 70%;
  border-top-color: var(--primary-2);
  animation-duration: 1.6s;
  animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
  width: 40%;
  height: 40%;
  border-top-color: #fff;
  animation-duration: 2s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 34px;
}

/* New top hero (video loop) */
.heroVideo {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.heroVideo__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.heroVideo__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.56));
}

.heroVideo__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroVideo__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.08);
  pointer-events: none;
}

.heroVideo__inner {
  position: relative;
  z-index: 1;
  padding: 46px 0;
}

.heroVideo__content {
  width: min(680px, 100%);
  color: #fff;
}

.heroVideo__kicker {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: #ffd6a8;
}

.heroVideo__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
}

.heroVideo__desc {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

/* Trust strip (below video hero) */
.trustStrip {
  position: relative;
  margin-top: -36px;
  z-index: 3;
  padding: 0 0 10px;
}

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

.trustStrip__item {
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: calc(var(--radius-sm) + 4px);
  background:
    radial-gradient(220px 90px at 85% 10%, rgba(255, 153, 51, 0.16), transparent 64%),
    rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  padding: 14px;
  display: grid;
  gap: 6px;
  align-content: start;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trustStrip__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 153, 51, 0.4);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.trustStrip__item strong {
  font-size: clamp(21px, 2.3vw, 28px);
  line-height: 1.15;
  color: var(--navy);
}

.trustStrip__item span {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 800;
  color: rgba(11, 31, 42, 0.82);
}

.hero__sectionLabel {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 43, 68, 0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(255, 153, 51, 0.22), transparent 55%),
    radial-gradient(780px 420px at 20% 60%, rgba(0, 43, 68, 0.12), transparent 60%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
  background: rgba(0, 43, 68, 0.06);
  padding: 10px 14px;
  border-radius: 999px;
  width: fit-content;
}

.kicker__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(255, 153, 51, 0.18);
}

.hero__title {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.2;
  margin: 16px 0 10px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.hero__desc {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.btn--primary {
  background: var(--primary);
  color: #111;
  box-shadow: 0 14px 26px rgba(255, 153, 51, 0.22);
}

.btn--primary:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(0, 43, 68, 0.24);
  color: var(--navy);
}

.btn--ghost:hover {
  background: rgba(255, 153, 51, 0.14);
  border-color: rgba(255, 153, 51, 0.35);
  transform: translateY(-1px);
}

.hero__trust {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.pill i {
  color: var(--primary);
  font-size: 14px;
  flex: 0 0 auto;
}

/* Hero scene */
.hero__scene {
  position: relative;
  min-height: 420px;
}

.hero__asset {
  position: absolute;
  width: clamp(120px, 14vw, 200px);
  height: auto;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.2));
  pointer-events: none;
  animation: heroAssetFloat 8s ease-in-out infinite;
  will-change: auto;
}

@media (hover: hover) and (pointer: fine) {
  .hero__asset {
    will-change: transform;
  }
}

.hero__asset--ac {
  top: 18px;
  inset-inline-start: 36px;
  animation-delay: 0s;
}

.hero__asset--cctv {
  top: 72px;
  inset-inline-end: 88px;
  animation-delay: 0.8s;
}

.hero__asset--rooms {
  top: 184px;
  inset-inline-start: 138px;
  animation-delay: 1.4s;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.9;
  mix-blend-mode: multiply;
  z-index: 1;
}

.orb--a {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 153, 51, 0.9), rgba(255, 153, 51, 0.18));
  top: 50px;
  inset-inline-end: 40px;
}

.orb--b {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 43, 68, 0.65), rgba(0, 43, 68, 0.10));
  top: 210px;
  inset-inline-start: 40px;
}

.orb--c {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 194, 133, 0.9), rgba(255, 194, 133, 0.12));
  top: 24px;
  inset-inline-start: 140px;
}

.glass {
  position: absolute;
  inset-inline-end: 24px;
  inset-inline-start: auto;
  width: min(66%, 320px);
  bottom: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  padding: 10px;
  backdrop-filter: blur(18px);
  z-index: 3;
}

.glass__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.metric {
  padding: 8px;
  border-radius: 14px;
  background: rgba(0, 43, 68, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.metric__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.metric__value {
  font-size: 14px;
  font-weight: 900;
  color: var(--navy);
}

.glass__sparkline {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  align-items: end;
  margin-top: 14px;
  height: 42px;
}

.glass__sparkline span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 153, 51, 0.95), rgba(255, 153, 51, 0.25));
}

.glass__hint {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

/* Sections */
.section {
  padding: 68px 0;
}

.section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.section__head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.2px;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(420px 220px at 20% 0%, rgba(255, 153, 51, 0.20), transparent 60%),
    radial-gradient(420px 260px at 80% 100%, rgba(0, 43, 68, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.card:hover::after {
  opacity: 1;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 153, 51, 0.16);
  color: #111;
  border: 1px solid rgba(255, 153, 51, 0.18);
}

.card__title {
  margin: 12px 0 6px;
  font-weight: 900;
}

.card__desc {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.solutionCard {
  position: relative;
  overflow: hidden;
}

.solutionCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.62)),
    var(--solution-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: 0;
}

.solutionCard > * {
  position: relative;
  z-index: 1;
}

#solutions .grid.grid--cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#solutions .solutionCard {
  min-height: 340px;
  border-radius: calc(var(--radius) + 6px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  isolation: isolate;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

#solutions .solutionCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

#solutions .solutionCard::before {
  opacity: 1;
}

#solutions .solutionCard .card__icon {
  background: #fff;
  border-color: #fff;
}

#solutions .solutionCard .card__title,
#solutions .solutionCard .card__desc {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

#solutions .solutionCard .card__title {
  font-size: clamp(21px, 2.3vw, 26px);
  margin-top: 0;
  line-height: 1.35;
}

#solutions .solutionCard .card__desc {
  font-size: 15px;
  line-height: 1.75;
}

/* Banner */
.banner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: rgba(0, 43, 68, 0.03);
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
}

.banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(650px 320px at 80% 20%, rgba(255, 153, 51, 0.25), transparent 60%),
    radial-gradient(620px 360px at 20% 90%, rgba(0, 43, 68, 0.14), transparent 60%);
  pointer-events: none;
}

.banner__content,
.banner__stats {
  position: relative;
  z-index: 1;
}

.banner__kicker {
  display: inline-block;
  font-weight: 900;
  color: var(--navy);
  background: rgba(255, 153, 51, 0.15);
  padding: 8px 12px;
  border-radius: 999px;
}

.banner__title {
  margin: 12px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.banner__desc {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.banner__stats {
  display: grid;
  gap: 12px;
  align-content: start;
}

/* Platform redesign */
.platformSection {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0, 43, 68, 0.05), rgba(255, 153, 51, 0.08) 45%, rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.platformSection__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 260px at 84% 16%, rgba(255, 153, 51, 0.26), transparent 60%),
    radial-gradient(640px 320px at 20% 90%, rgba(0, 43, 68, 0.14), transparent 62%);
}

.platformSection__content,
.platformSection__panel {
  position: relative;
  z-index: 1;
}

.platformSection__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(255, 153, 51, 0.15);
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
}

.platformSection__title {
  margin: 10px 0 8px;
  font-size: clamp(23px, 2.7vw, 34px);
  line-height: 1.22;
}

.platformSection__desc {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.platformSection__points {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.platformSection__points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #163141;
}

.platformSection__points i {
  color: #d97800;
  width: 18px;
  text-align: center;
}

.platformSection__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.platformSection__panel {
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.platformSection__stats {
  display: grid;
  gap: 8px;
}

.platformSection__miniTrend {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 5px;
  height: 44px;
  padding: 6px 4px 2px;
  border: 1px dashed rgba(0, 43, 68, 0.2);
  border-radius: 10px;
  background: rgba(0, 43, 68, 0.03);
}

.platformSection__miniTrend span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 153, 51, 0.95), rgba(255, 153, 51, 0.22));
}

.platformSection__miniTrend span:nth-child(1) { height: 22%; }
.platformSection__miniTrend span:nth-child(2) { height: 48%; }
.platformSection__miniTrend span:nth-child(3) { height: 34%; }
.platformSection__miniTrend span:nth-child(4) { height: 72%; }
.platformSection__miniTrend span:nth-child(5) { height: 56%; }
.platformSection__miniTrend span:nth-child(6) { height: 82%; }
.platformSection__miniTrend span:nth-child(7) { height: 64%; }

.stat {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 14px;
}

.stat__value {
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
}

.stat__label {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  margin-top: 4px;
}

/* mini banners */
.grid--banners {
  grid-template-columns: 1fr 1fr;
}

/* Industries showcase */
.industriesShowcase {
  position: relative;
}

.industriesShowcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 300px at 86% 10%, rgba(255, 153, 51, 0.15), transparent 65%),
    radial-gradient(700px 280px at 16% 92%, rgba(0, 43, 68, 0.1), transparent 64%);
}

.industriesShowcase > .container {
  position: relative;
  z-index: 1;
}

.industriesShowcase__panel {
  border: 1px solid rgba(0, 43, 68, 0.14);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.86)),
    linear-gradient(120deg, rgba(255, 153, 51, 0.08), rgba(0, 43, 68, 0.05));
  box-shadow: var(--shadow);
  padding: 22px;
}

.industriesShowcase__grid {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 6px 4px 12px;
  margin-inline: -4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.industriesShowcase__grid::-webkit-scrollbar {
  height: 8px;
}

.industriesShowcase__grid::-webkit-scrollbar-thumb {
  background: rgba(0, 43, 68, 0.28);
  border-radius: 999px;
}

.industriesShowcase__card {
  flex: 0 0 min(78vw, 560px);
  position: relative;
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(220px 90px at 90% 10%, rgba(255, 153, 51, 0.15), transparent 66%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  min-height: 250px;
  padding: 22px;
  display: grid;
  align-content: end;
  justify-items: start;
  text-align: right;
  gap: 14px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  scroll-snap-align: start;
}

.industriesShowcase__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.58)),
    var(--industry-bg, none);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.industriesShowcase__card > * {
  position: relative;
  z-index: 1;
}

.industriesShowcase__card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 153, 51, 0.36);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.industriesShowcase__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 51, 0.34);
  background: rgba(255, 153, 51, 0.13);
  color: #ffe2c2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}

.industriesShowcase__card h3 {
  margin: 0;
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.5;
}

.industriesShowcase__foot {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.industriesShowcase__hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: rgba(0, 43, 68, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.industriesShowcase__hintTrack {
  width: 70px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 43, 68, 0.18);
  background: rgba(0, 43, 68, 0.08);
  position: relative;
  overflow: hidden;
}

.industriesShowcase__hintTrack i {
  position: absolute;
  top: 1px;
  left: 2px;
  width: 20px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.95), rgba(255, 194, 133, 0.95));
  animation: industriesHintSlide 1.8s ease-in-out infinite;
}

.mini {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  min-height: 260px;
}

.mini__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.60)),
    url("https://demo2.themelexus.com/priotech/wp-content/uploads/2023/07/H1-img-9.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.mini--alt .mini__bg {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.60)),
    url("https://demo2.themelexus.com/priotech/wp-content/uploads/2023/07/H1-img-10.jpg") center/cover no-repeat;
}

.mini__content {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: grid;
  align-content: end;
  gap: 10px;
  color: #fff;
}

.mini__kicker {
  color: #ffe2c2;
  font-weight: 900;
}

.mini__title {
  font-size: 24px;
  font-weight: 900;
}

.mini__link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: #111;
}

/* Products / Posts */
.grid--products,
.grid--posts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Social proof */
.socialProof {
  position: relative;
}

.socialProof::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(720px 300px at 88% 10%, rgba(255, 153, 51, 0.14), transparent 64%),
    radial-gradient(620px 280px at 14% 90%, rgba(0, 43, 68, 0.09), transparent 64%);
}

.socialProof > .container {
  position: relative;
  z-index: 1;
}

.socialProof__logos {
  display: block;
  margin-bottom: 16px;
}

.socialProof__logos.marquee {
  padding: 14px;
}

.socialProof__logos .marquee__content {
  gap: 14px;
  padding-inline: 6px;
}

.socialProof__logo {
  width: clamp(124px, 13vw, 176px);
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px solid rgba(0, 43, 68, 0.11);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  padding: 12px;
  flex: 0 0 auto;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.socialProof__logo:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 153, 51, 0.34);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.socialProof__logo img {
  width: 100%;
  height: 100%;
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
  display: block;
}

.quotesGrid {
  margin-top: 8px;
}

.quoteCard {
  border-radius: calc(var(--radius) + 2px);
}

.quoteCard .card__title {
  margin: 0;
  line-height: 1.75;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--navy);
}

.quoteCard .card__desc {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(11, 31, 42, 0.72);
}

.item {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
}

.item__media {
  aspect-ratio: 1 / 1;
  background: #eef2f6;
  position: relative;
  overflow: hidden;
}

.item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.item__body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.item__tag {
  color: rgba(255, 153, 51, 0.95);
  font-weight: 900;
  font-size: 12px;
}

.item__title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.item__desc {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.btn--small {
  padding: 8px 12px;
  font-size: 13px;
}

/* Final CTA */
.finalCta {
  position: relative;
}

.finalCta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 300px at 88% 14%, rgba(255, 153, 51, 0.18), transparent 64%),
    radial-gradient(700px 280px at 12% 92%, rgba(0, 43, 68, 0.14), transparent 64%);
}

.finalCta > .container {
  position: relative;
  z-index: 1;
}

.finalCta__band {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(0, 43, 68, 0.14);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84));
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  overflow: hidden;
}

.finalCta__main h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.25;
  color: var(--navy);
}

.finalCta__main p {
  margin: 10px 0 0;
  color: rgba(11, 31, 42, 0.8);
  font-size: 17px;
  font-weight: 700;
}

.finalCta__main .btn {
  margin-top: 16px;
}

.finalCta__card {
  border-radius: 16px;
  border: 1px solid rgba(0, 43, 68, 0.14);
  background: rgba(0, 43, 68, 0.04);
  padding: 16px;
  align-self: stretch;
}

.finalCta__card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 24px);
}

.finalCta__card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.finalCta__card .btn {
  margin-top: 14px;
}

/* CTA */
.cta {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background:
    radial-gradient(760px 360px at 20% 20%, rgba(255, 153, 51, 0.20), transparent 60%),
    radial-gradient(760px 360px at 80% 100%, rgba(0, 43, 68, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
}

.cta__content h2 {
  margin: 0;
  font-size: 30px;
}

.cta__content p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cta__map {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.75);
}

.cta__map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.cta__form {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.70);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
}

.field__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 12px;
  font-family: inherit;
  font-weight: 700;
  outline: none;
  background: rgba(255, 255, 255, 0.92);
}

.field__input:focus {
  border-color: rgba(255, 153, 51, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.18);
}

.field__input.is-invalid {
  border-color: rgba(201, 41, 41, 0.75);
  box-shadow: 0 0 0 4px rgba(201, 41, 41, 0.16);
}

.formNote {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.formNote.is-info {
  color: var(--muted);
}

.formNote.is-success {
  color: #117a37;
}

.formNote.is-error {
  color: #b42323;
}

.cta__form .btn[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 46px 0 20px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer__col {
  min-width: 0;
}

.footer__col--brand {
  max-width: 420px;
}

.footer__brand {
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 8px;
}

.footer__brandLogo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer__brandLogo img {
  width: clamp(110px, 12vw, 170px);
  height: auto;
  display: block;
}

.footer__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 900;
}

.footer__desc {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.footer__links {
  display: grid;
  gap: 0;
}

.footer__link {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.footer__links .footer__link {
  padding: 2px 0;
  font-size: 14px;
  font-weight: 500;
}

.footer__link:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 24px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer__bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 13px;
}

.footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer__legal .footer__link {
  padding: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.footer__phone {
  width: 100%;
  text-align: right;
  direction: ltr;
  unicode-bidi: plaintext;
}

/* Dedicated solutions page */
.solutionsPage {
  padding-bottom: 36px;
  background:
    radial-gradient(820px 300px at 88% 2%, rgba(255, 153, 51, 0.07), transparent 64%),
    radial-gradient(760px 260px at 10% 98%, rgba(0, 43, 68, 0.06), transparent 66%);
}

.solutionsPage__hero {
  position: relative;
  padding-top: 56px;
  padding-bottom: 22px;
  background:
    radial-gradient(740px 320px at 88% 8%, rgba(255, 153, 51, 0.14), transparent 62%),
    radial-gradient(700px 300px at 10% 92%, rgba(0, 43, 68, 0.08), transparent 62%);
  border-bottom: 1px solid rgba(0, 43, 68, 0.08);
}

.solutionsPage__heroInner {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 26px;
  align-items: center;
}

.solutionsPage__heroCopy {
  max-width: 640px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  color: rgba(11, 31, 42, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.solutionsPage__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 153, 51, 0.1);
  color: #8f4900;
  border: 1px solid rgba(255, 153, 51, 0.3);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.09em;
}

.solutionsPage__title {
  margin: 12px 0 10px;
  font-size: clamp(34px, 4.1vw, 48px);
  line-height: 1.24;
  color: var(--navy);
  letter-spacing: -0.2px;
}

.solutionsPage__desc {
  margin: 0;
  color: rgba(11, 31, 42, 0.76);
  font-weight: 700;
  line-height: 1.95;
}

.solutionsPage__heroActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.solutionsPage__heroStats {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.solutionsPage__heroStats li {
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
  padding: 11px 10px;
  display: grid;
  gap: 2px;
}

.solutionsPage__heroStats strong {
  color: var(--navy);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15;
}

.solutionsPage__heroStats span {
  color: rgba(11, 31, 42, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.solutionsPage__heroBadges {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solutionsPage__heroBadges li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(0, 43, 68, 0.13);
  background: rgba(255, 255, 255, 0.9);
  color: #19384a;
  font-size: 12px;
  font-weight: 800;
}

.solutionsPage__sectionKicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 51, 0.35);
  background: rgba(255, 153, 51, 0.11);
  color: #99500a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.solutionsPage__heroMedia {
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  gap: 12px;
}

.solutionsPage__heroMedia--single {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.solutionsPage__heroPrimary,
.solutionsPage__heroStack figure,
.solutionsPage__detailMain,
.solutionsPage__detailSupport figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 43, 68, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

.solutionsPage__heroPrimary img,
.solutionsPage__heroStack img,
.solutionsPage__detailMain img,
.solutionsPage__detailSupport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solutionsPage__heroPrimary {
  min-height: 450px;
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
}

.solutionsPage__heroMedia--single .solutionsPage__heroPrimary {
  min-height: 540px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.12),
    0 0 0 10px rgba(255, 255, 255, 0.34);
}

.solutionsPage__heroMedia--single .solutionsPage__heroPrimary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 43, 68, 0.12)),
    radial-gradient(420px 180px at 85% 12%, rgba(255, 153, 51, 0.18), transparent 60%);
  pointer-events: none;
}

.solutionsPage__heroMedia--single .solutionsPage__heroPrimary img {
  transform: scale(1.02);
}

.solutionsPage__heroStack {
  display: grid;
  gap: 12px;
}

.solutionsPage__heroStack figure {
  min-height: 218px;
}

.solutionsPage__details {
  display: grid;
  gap: 22px;
}

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

.solutionsPage__catalogCard {
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.solutionsPage__catalogCard:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.08);
}

.solutionsPage__catalogMedia {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 43, 68, 0.1);
}

.solutionsPage__catalogMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}

.solutionsPage__catalogCard:hover .solutionsPage__catalogMedia img {
  transform: scale(1.04);
}

.solutionsPage__catalogBody {
  padding: 14px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.solutionsPage__catalogKicker {
  margin: 0;
  color: #9b5b14;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.solutionsPage__catalogBody h3 {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.45;
  color: var(--navy);
}

.solutionsPage__catalogBody h3 a {
  color: inherit;
}

.solutionsPage__catalogSummary {
  margin: 0;
  color: rgba(11, 31, 42, 0.75);
  font-weight: 700;
  line-height: 1.85;
}

.solutionsPage__catalogActions {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.solutionDetailPage .solutionsPage__hero {
  padding-top: 44px;
}

.solutionsPage__detail {
  position: relative;
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(540px 180px at 92% 6%, rgba(255, 153, 51, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  scroll-margin-top: 120px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.solutionsPage__detail::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.88), rgba(0, 43, 68, 0.6));
  opacity: 0.72;
}

.solutionsPage__detail:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.solutionsPage__detailHeader {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 43, 68, 0.08);
}

.solutionsPage__detailKicker {
  margin: 0;
  color: #9b5b14;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.solutionsPage__detailBody h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.7vw, 32px);
  line-height: 1.28;
}

.solutionsPage__detailBody {
  display: grid;
  gap: 14px;
}

.solutionsPage__detailIntro {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(0, 43, 68, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 153, 51, 0.05), rgba(255, 255, 255, 0.92));
}

.solutionsPage__detailSummary {
  margin: 0;
  font-weight: 900;
  color: #153344;
  line-height: 1.8;
  font-size: 18px;
}

.solutionsPage__detailText {
  margin: 0;
  color: rgba(11, 31, 42, 0.74);
  font-weight: 700;
  line-height: 1.9;
}

.solutionsPage__detailMeta {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.solutionsPage__metaBlock {
  border: 1px solid rgba(0, 43, 68, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.solutionsPage__detailMeta h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--navy);
}

.solutionsPage__detailMeta ul {
  margin: 0;
  padding-inline-start: 20px;
  display: grid;
  gap: 6px;
}

.solutionsPage__detailMeta li {
  color: #203d4e;
  font-weight: 700;
  line-height: 1.8;
}

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

.solutionsPage__useCases span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 51, 0.32);
  background: rgba(255, 153, 51, 0.09);
  color: #98500a;
  font-size: 12px;
  font-weight: 900;
}

.solutionsPage__detailActions {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 43, 68, 0.08);
}

.solutionsPage__detailActions .btn {
  min-height: 39px;
}

/* Responsive */
@media (max-width: 980px) {
  .solutionsPage__heroBadges {
    gap: 7px;
  }

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

  .solutionsPage__detail,
  .solutionsPage__detail.is-reverse {
    grid-template-columns: 1fr;
  }

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

  .solutionsPage__detail.is-reverse .solutionsPage__detailMedia {
    order: initial;
  }

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

  .nav__menu {
    gap: 14px;
  }

  .nav__link {
    font-size: 15px;
    padding: 8px 9px;
  }

  .heroVideo {
    min-height: 100svh;
  }

  .heroVideo__inner {
    padding: 34px 0;
  }

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

  .hero__scene {
    min-height: 360px;
  }

  .hero__asset {
    width: clamp(126px, 29vw, 194px);
  }

  .hero__asset--ac {
    top: 16px;
    inset-inline-start: 14px;
  }

  .hero__asset--cctv {
    top: 70px;
    inset-inline-end: 30px;
  }

  .hero__asset--rooms {
    top: 152px;
    inset-inline-start: 62px;
  }

  .glass {
    width: min(70%, 280px);
    inset-inline-end: 16px;
    bottom: 6px;
  }

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

  .trustStrip {
    margin-top: -26px;
  }

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

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

  #solutions .solutionCard {
    min-height: 320px;
  }

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

  .socialProof__logo {
    width: clamp(112px, 18vw, 162px);
  }

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

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

  .industriesShowcase__grid {
    gap: 14px;
  }

  .industriesShowcase__card {
    flex-basis: min(84vw, 520px);
    min-height: 230px;
  }

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

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

  .processFlow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
    gap: 14px;
  }

  .processFlow__item {
    min-height: 172px;
    padding: 14px;
  }

  .processFlow__arrow {
    inset-inline-start: auto;
    inset-inline-end: -16px;
  }

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

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

}

@keyframes heroAssetFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -7px, 0) rotate(-1deg);
  }
}

@media (max-width: 760px) {
  .solutionsPage__hero {
    padding-top: 26px;
  }

  .solutionsPage__title {
    font-size: clamp(25px, 8.2vw, 34px);
  }

  .solutionsPage__heroStats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .solutionsPage__heroBadges {
    margin-top: 12px;
  }

  .solutionsPage__heroBadges li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

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

  .solutionsPage__heroMedia--single {
    grid-template-columns: 1fr;
  }

  .solutionsPage__heroPrimary {
    min-height: 290px;
  }

  .solutionsPage__heroMedia--single .solutionsPage__heroPrimary {
    min-height: 360px;
    border-radius: 18px;
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.1),
      0 0 0 6px rgba(255, 255, 255, 0.28);
  }

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

  .solutionsPage__heroStack figure {
    min-height: 118px;
  }

  .solutionsPage__detail {
    padding: 10px;
    border-radius: 14px;
  }

  .solutionsPage__detailIntro,
  .solutionsPage__metaBlock {
    padding: 12px;
    border-radius: 14px;
  }

  .solutionsPage__catalogGrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .solutionsPage__catalogBody {
    padding: 12px;
    gap: 7px;
  }

  .solutionsPage__sectionKicker {
    font-size: 10px;
  }

  .solutionsPage__detailActions .btn {
    width: 100%;
  }

  .trustStrip {
    margin-top: -18px;
  }

  .trustStrip__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trustStrip__item {
    padding: 12px;
  }

  .hero__trust {
    flex-wrap: wrap;
  }

  .topbar__inner {
    padding: 6px 0;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    direction: ltr;
  }

  .topbar__item {
    font-size: 12px;
    gap: 6px;
    min-width: 0;
    white-space: nowrap;
  }

  .topbar__item:first-child {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .topbar__item:last-child {
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .topbar__item .topbar__textLink {
    display: none;
  }

  .topbar__item a[dir="ltr"] {
    font-size: 11px;
    font-weight: 800;
  }

  .chip {
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 8px;
  }

  .nav__toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav__menu {
    position: fixed;
    inset-inline: 10px;
    top: 110px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px;
    display: grid;
    gap: 8px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(14px);
  }

  .nav__menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__link {
    font-size: 15px;
    min-height: 40px;
    justify-content: flex-start;
    background: rgba(0, 43, 68, 0.04);
  }

  .grid--cards,
  .grid--banners,
  .grid--products,
  .grid--posts {
    grid-template-columns: 1fr;
  }

  .industriesShowcase__panel {
    padding: 14px;
    border-radius: calc(var(--radius) + 2px);
  }

  .industriesShowcase__grid {
    gap: 10px;
  }

  .industriesShowcase__card {
    flex-basis: min(92vw, 430px);
    min-height: 210px;
    padding: 12px;
    display: grid;
    align-content: end;
    justify-items: start;
    text-align: right;
    gap: 10px;
  }

  .industriesShowcase__card h3 {
    font-size: 16px;
  }

  .socialProof__logo {
    width: clamp(106px, 30vw, 150px);
    border-radius: 12px;
    padding: 10px;
  }

  .finalCta__band {
    padding: 14px;
    border-radius: calc(var(--radius) + 2px);
  }

  .finalCta__main p {
    font-size: 15px;
  }

  #solutions .grid.grid--cards {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 6px 4px 10px;
    margin-inline: -4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #solutions .grid.grid--cards::-webkit-scrollbar {
    height: 7px;
  }

  #solutions .grid.grid--cards::-webkit-scrollbar-thumb {
    background: rgba(0, 43, 68, 0.26);
    border-radius: 999px;
  }

  #solutions .solutionCard {
    flex: 0 0 min(95vw, 410px);
    min-height: 350px;
    border-radius: calc(var(--radius) + 4px);
    scroll-snap-align: start;
  }

  .processFlow {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .processFlow__item {
    min-height: auto;
    border-radius: 12px;
    padding: 14px 12px;
  }

  .processFlow__arrow {
    inset-inline-start: 50%;
    inset-inline-end: auto;
    top: auto;
    bottom: -16px;
    transform: translateX(-50%);
    font-size: 14px;
  }

  .whyKeypoints__item {
    padding: 12px;
  }

  .whyKeypoints__item h3 {
    font-size: 17px;
  }

}

@media (hover: none), (pointer: coarse) {
  .hero__asset {
    animation: none;
  }

  .industriesShowcase__hintTrack i {
    animation: none;
  }
}

@keyframes industriesHintSlide {
  0% {
    transform: translateX(0);
    opacity: 0.85;
  }
  50% {
    transform: translateX(44px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
  .hero__asset,
  .industriesShowcase__hintTrack i {
    animation: none !important;
    will-change: auto !important;
  }
  .industriesShowcase__hintTrack i {
    animation: none !important;
  }
}
