: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;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main,
.subpage {
  flex: 1 0 auto;
}

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:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 239, 0.94));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 43, 68, 0.1);
  box-shadow: 0 10px 30px rgba(0, 43, 68, 0.08);
  transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease, transform 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:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.96));
  border-bottom-color: rgba(0, 43, 68, 0.16);
  box-shadow: 0 16px 34px rgba(0, 43, 68, 0.12);
}

body.has-hero-video .header.is-scrolled {
  position: fixed;
  top: var(--overlay-topbar-h);
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.96)) !important;
  border-bottom-color: rgba(0, 43, 68, 0.16) !important;
  box-shadow: 0 16px 34px rgba(0, 43, 68, 0.14);
  backdrop-filter: blur(16px);
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row-reverse;
  gap: clamp(16px, 2vw, 28px);
  padding: 20px 0;
  /* Force navbar group to stay on the RIGHT */
  direction: ltr;
  transition: padding 240ms ease;
}

.header.is-scrolled .header__inner {
  padding: 12px 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(116px, 11vw, 158px);
  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.14);
  border-radius: 22px;
  padding: 10px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 247, 0.9));
  box-shadow: 0 12px 28px rgba(0, 43, 68, 0.09);
  backdrop-filter: blur(16px);
}

.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 rgba(0, 43, 68, 0.16);
  background: #fff7ef;
  border-radius: 14px;
  width: 50px;
  height: 46px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 43, 68, 0.1);
}

.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: 12px;
  flex-wrap: nowrap;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  line-height: 1.25;
  text-align: center;
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(18px, 1.2vw, 20px);
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  letter-spacing: -0.1px;
  transition: background 240ms ease, transform 240ms ease, color 240ms ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav__menu > .btn {
  height: 48px;
  font-size: clamp(17px, 1.1vw, 19px);
  font-weight: 900;
  line-height: 1;
  padding-inline: 18px;
  padding-top: 0;
  padding-bottom: 0;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.22);
}

.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.13));
  border: 1px solid rgba(255, 153, 51, 0.48);
  color: #002b44;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 8px 18px rgba(255, 153, 51, 0.12);
}

.nav__link::after {
  height: 3px;
  inset-inline: 10px;
  bottom: 4px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.25), rgba(255, 153, 51, 1));
}

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

.nav__link:hover {
  background: rgba(255, 153, 51, 0.18);
  border-color: rgba(255, 153, 51, 0.34);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 43, 68, 0.08);
}

.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-flex;
  align-items: center;
  gap: 6px;
  padding-inline: 4px;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}

.marquee__icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  flex: 0 0 auto;
}

.marquee__icon--wifi,
.marquee__icon--bluetooth,
.marquee__icon--mqtt,
.marquee__icon--mesh,
.marquee__icon--chip {
  background: rgba(255, 153, 51, 0.15);
  border: 1px solid rgba(255, 153, 51, 0.4);
}

.marquee__icon--wifi::before { content: "◜◝"; font-size: 9px; position: absolute; inset: 2px 0 0; text-align: center; color: #b35a00; }
.marquee__icon--bluetooth::before { content: "ᛒ"; font-size: 12px; position: absolute; inset: 0; text-align: center; line-height: 15px; color: #b35a00; }
.marquee__icon--mqtt::before { content: "MQ"; font-size: 8px; position: absolute; inset: 0; text-align: center; line-height: 15px; color: #b35a00; font-weight: 900; }
.marquee__icon--mesh::before { content: "◈"; font-size: 10px; position: absolute; inset: 0; text-align: center; line-height: 15px; color: #b35a00; }
.marquee__icon--chip::before { content: "▦"; font-size: 10px; position: absolute; inset: 0; text-align: center; line-height: 15px; color: #b35a00; }

.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;
  position: relative;
  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;
  position: relative;
}

.faq__num {
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 153, 51, 0.9);
  min-width: 2.2ch;
  text-align: center;
}

.faq__qText {
  flex: 1;
  font-weight: 800;
}

.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;
  border-inline-start: 4px solid rgba(255, 153, 51, 0.8);
  margin-inline-start: 20px;
  padding-inline-start: 12px;
}

.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__qText {
  font-weight: 900;
}

.faq__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.faq__item.is-open::after {
  transform: scaleX(1);
}

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

.loadingOverlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-out;
}

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

.spinner-arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 153, 51, 0.15);
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  animation: spin 1.2s linear infinite;
}

.spinner-wordmark {
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #ff9933;
  font-weight: 900;
}

.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 {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  display: block;
}

.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: -55px;
  z-index: 3;
  padding: 0 0 10px;
  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%);
}

#atex-overview::before {
  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%);
}

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

.trustStrip__item {
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: calc(var(--radius-sm) + 2px);
  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 8px 20px rgba(0, 0, 0, 0.06);
  padding: 6px 10px;
  display: grid;
  gap: 0px;
  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(15px, 1.6vw, 18px);
  line-height: 1.15;
  color: var(--navy);
}

.trustStrip__item span {
  font-size: 11px;
  line-height: 1.4;
  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-family: inherit;
  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);
  border-inline-start: 4px solid rgba(255, 153, 51, 0.8);
  position: relative;
  overflow: hidden;
}

.quoteCard__mark {
  position: absolute;
  inset-inline-start: 12px;
  top: -12px;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 153, 51, 0.15);
  pointer-events: none;
}

.quoteCard__stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.quoteCard__sector {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 153, 51, 0.18);
  color: #8a4500;
}

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

/* Home blog: clean minimal cards */
#blog .homeBlogGrid {
  align-items: stretch;
}

#blog .homeBlogCard {
  border-radius: 14px;
  border: 1px solid rgba(0, 43, 68, 0.12);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#blog .homeBlogCard:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 43, 68, 0.2);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.09);
}

#blog .homeBlogCard .item__link {
  display: block;
  color: inherit;
}

#blog .homeBlogCard__media {
  aspect-ratio: 16 / 10;
  background: #eef2f6;
}

#blog .homeBlogCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  transition: transform 260ms ease;
}

#blog .homeBlogCard:hover .homeBlogCard__media img {
  transform: scale(1.03);
}

#blog .item__mediaFallback {
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  color: rgba(0, 43, 68, 0.45);
  background: linear-gradient(140deg, #f3f6fa, #e7edf3);
}

#blog .homeBlogCard__body {
  padding: 14px 14px 16px;
}

#blog .homeBlogCard__title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#blog .homeBlogCard .item__link:focus-visible {
  outline: 3px solid rgba(0, 43, 68, 0.35);
  outline-offset: 2px;
  border-radius: 14px;
}

.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:
    repeating-linear-gradient(20deg, rgba(255, 153, 51, 0.14) 0 16px, rgba(255, 153, 51, 0.08) 16px 32px),
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  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__badge {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 153, 51, 0.18);
  border: 1px solid rgba(255, 153, 51, 0.45);
  font-weight: 900;
  color: #8a4500;
  font-size: 13px;
}

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

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

.scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9933, #ffb366);
  z-index: 2000;
}

/* 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;
  margin-top: auto;
  flex-shrink: 0;
  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(180px, 22vw, 320px);
  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;
  font-size: 13.5px;
  line-height: 1.6;
}

.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: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 13px;
}

.footer__copyright {
  text-align: start;
}

.footer__versionTag {
  display: flex;
  justify-content: center;
}

.footer__version {
  display: inline-flex;
  align-items: center;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer__sep {
  opacity: 0.3;
}

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

  .heroVideo {
    min-height: 100dvh;
    min-height: 100svh;
  }

  .heroVideo__inner {
    padding: 100px 0 48px;
  }

  .heroVideo__content {
    width: 100%;
  }

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

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

  #blog .homeBlogGrid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-inline: -2px;
    padding: 4px 2px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #blog .homeBlogGrid::-webkit-scrollbar {
    height: 6px;
  }

  #blog .homeBlogGrid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
  }

  #blog .homeBlogCard {
    flex: 0 0 min(78vw, 410px);
    scroll-snap-align: start;
    min-height: auto;
  }

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

  .footer__bottomInner {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  .footer__copyright {
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

}

@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: -55px;
  }

  .trustStrip__inner {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 4px 2px 8px;
    margin-inline: -2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .trustStrip__inner::-webkit-scrollbar {
    height: 6px;
  }

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

  .trustStrip__item {
    flex: 0 0 min(80vw, 260px);
    scroll-snap-align: start;
    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: calc(var(--mobile-nav-top, 64px) + 8px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px;
    display: grid;
    gap: 6px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(16px);
    transition: opacity 200ms ease, transform 200ms ease;
    z-index: 1100;
  }

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

  #blog .homeBlogGrid {
    margin-inline: -4px;
    padding-inline: 4px;
  }

  #blog .homeBlogCard {
    flex-basis: min(90vw, 390px);
    min-height: auto;
  }

  #blog .homeBlogCard__body {
    padding: 12px 12px 14px;
  }

  #blog .homeBlogCard__title {
    font-size: 18px;
  }

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

/* --- WhatsApp floating button --- */
.waBtn {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.waBtn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.16);
}

/* --- Hero video: fallback bg if video fails --- */
.heroVideo__media {
  background:
    linear-gradient(135deg, rgba(0, 24, 37, 0.72) 0%, rgba(0, 43, 68, 0.62) 100%),
    url("/assets/hero-video/video-keeper.webp") center/cover no-repeat,
    linear-gradient(135deg, #001825 0%, #002b44 100%);
}

/* ============================================================
   DESIGN UPGRADE — Precision Gulf
   Industrial data precision meets Gulf corporate authority.
   Appended block; all rules here intentionally override above.
   ============================================================ */

/* --- Typography scale boost --- */
.hero__title {
  font-size: clamp(40px, 4.8vw, 60px);
  letter-spacing: -0.8px;
}

.heroVideo__title {
  font-size: clamp(34px, 4.8vw, 58px);
  letter-spacing: -0.6px;
  font-weight: 900;
}

.section__head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.5px;
}

/* Section H2 — amber underline accent (RTL-aware, right-aligned) */
.section__head h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), rgba(255, 153, 51, 0.28));
  border-radius: 999px;
  margin-top: 10px;
}

/* --- Trust strip — bigger amber numbers --- */
.trustStrip__item strong {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #ff9933 30%, #e06600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* --- Card accent top border --- */
.card:not(.solutionCard):not(.quoteCard) {
  border-top: 2px solid rgba(255, 153, 51, 0.38);
}

.card:not(.solutionCard):not(.quoteCard):hover {
  border-top-color: var(--primary);
}

/* --- Primary button — stronger gradient glow --- */
.btn--primary {
  background: linear-gradient(135deg, #ffaa33, #e87400);
  box-shadow: 0 8px 22px rgba(255, 140, 0, 0.32), 0 2px 6px rgba(255, 140, 0, 0.18);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #ffbb55, #f08000);
  box-shadow: 0 12px 30px rgba(255, 140, 0, 0.44), 0 4px 10px rgba(255, 140, 0, 0.24);
  transform: translateY(-2px);
}

/* --- Platform section — light (no dark override) --- */

/* --- Why section — subtle dot-grid texture --- */
#why {
  background-image: radial-gradient(circle, rgba(0, 43, 68, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* Why cards — amber side accent border */
.whyKeypoints__item {
  border-inline-start: 3px solid rgba(255, 153, 51, 0.4);
}

.whyKeypoints__item:hover {
  border-inline-start-color: var(--primary);
}

/* --- Process flow — slightly darker background --- */
.processFlow {
  background:
    radial-gradient(680px 280px at 88% 12%, rgba(255, 153, 51, 0.2), transparent 64%),
    radial-gradient(680px 280px at 20% 92%, rgba(0, 43, 68, 0.12), transparent 64%),
    #f6f8fa;
}

/* final CTA remains light mode by request */

/* --- Kicker dot — pulsing amber glow (composited) --- */
@keyframes kickerPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(2.2); opacity: 0; }
}

.kicker__dot {
  position: relative;
}

.kicker__dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255, 153, 51, 0.5);
  animation: kickerPulse 2.4s ease-in-out infinite;
}

/* --- Social proof logos — subtle amber hover border --- */
.socialProof__logo:hover {
  border-color: rgba(255, 153, 51, 0.5);
  box-shadow: 0 10px 24px rgba(255, 153, 51, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* --- Hero video kicker — amber accent --- */
.heroVideo__kicker {
  letter-spacing: 0.12em;
  font-size: 13px;
  text-transform: uppercase;
  color: #ffd6a8;
  background: rgba(255, 153, 51, 0.18);
  border: 1px solid rgba(255, 153, 51, 0.32);
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}

/* --- Contact form — stronger focus ring --- */
.field__input:focus {
  border-color: rgba(255, 153, 51, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.22), 0 2px 8px rgba(255, 153, 51, 0.14);
}

/* --- Industries hint track — amber pill glow --- */
.industriesShowcase__hintTrack i {
  box-shadow: 2px 0 8px rgba(255, 153, 51, 0.5);
}

/* ============================================================
   STEP 6 — Platform section: dashboard widget panel
   ============================================================ */

/* Panel — dark-glass dashboard (contained, not a section) */
.platformSection__panel {
  background: linear-gradient(145deg, #001825 0%, #002b44 100%);
  border: 1px solid rgba(255, 153, 51, 0.22);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  color: #e8f4ff;
}

/* Panel header bar */
.platformSection__panelHeader {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.platformSection__panelTitle {
  flex: 1;
  color: rgba(255, 255, 255, 0.75);
}

.platformSection__panelTime {
  color: rgba(255, 153, 51, 0.85);
  font-variant-numeric: tabular-nums;
  direction: ltr;
}

/* LIVE dot */
.platformSection__liveLabel {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #22c55e;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.platformSection__liveDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
}

.platformSection__liveDot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.5);
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(2.4); opacity: 0; }
}

/* Stats inside dark panel */
.platformSection__panel .stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
}

.platformSection__panel .stat__value {
  color: #ff9933;
}

.platformSection__panel .stat__label {
  color: rgba(255, 255, 255, 0.6);
}

/* Chart wrapper */
.platformSection__chartWrap {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}

.platformSection__chartLabel {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

/* Taller trend bars */
.platformSection__miniTrend {
  height: 56px;
  border: none;
  background: none;
  border-radius: 0;
  padding: 0;
}

.platformSection__miniTrend span {
  background: linear-gradient(180deg, rgba(255, 153, 51, 1), rgba(255, 153, 51, 0.18));
  border-radius: 4px 4px 2px 2px;
}

.platformSection__miniTrend span:nth-child(1) { height: 28%; }
.platformSection__miniTrend span:nth-child(2) { height: 55%; }
.platformSection__miniTrend span:nth-child(3) { height: 42%; }
.platformSection__miniTrend span:nth-child(4) { height: 80%; }
.platformSection__miniTrend span:nth-child(5) { height: 65%; }
.platformSection__miniTrend span:nth-child(6) { height: 90%; }
.platformSection__miniTrend span:nth-child(7) { height: 72%; }

/* Status row */
.platformSection__statusRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.platformSection__statusBadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
}

.platformSection__statusBadge--ok {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.1);
}

/* ============================================================
   STEP 5 — Process flow: diagonal stagger layout
   ============================================================ */

/* Custom property stagger — hover still works cleanly */
.processFlow__item {
  --stagger: 0px;
  transform: translateY(var(--stagger));
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  align-self: start;
}

.processFlow__item:hover {
  transform: translateY(calc(var(--stagger) - 4px));
  border-color: rgba(255, 153, 51, 0.5);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 153, 51, 0.2);
}

/* Stagger each step down 20px */
.processFlow__item:nth-child(2) { --stagger: 18px; }
.processFlow__item:nth-child(3) { --stagger: 36px; }
.processFlow__item:nth-child(4) { --stagger: 54px; }
.processFlow__item:nth-child(5) { --stagger: 72px; }

/* Extra bottom padding so staggered items don't clip the container */
.processFlow {
  padding-bottom: calc(26px + 72px);
  align-items: start;
}

/* Step number — bigger, amber, bold */
.processFlow__stepNo {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ff9933, #cc6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: none;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  color: transparent;
  line-height: 1;
  min-width: unset;
  width: auto;
}

/* Arrow — amber connecting line, vertically centered between staggered items */
.processFlow__arrow {
  font-size: 18px;
  color: rgba(255, 153, 51, 0.7);
  top: 28px;
  transform: none;
  z-index: 2;
}

/* Reset stagger on mobile (single-column, no stagger needed) */
@media (max-width: 640px) {
  .processFlow__item { --stagger: 0px !important; }
  .processFlow { padding-bottom: 26px; }
}

/* ============================================================
   STEP 4 — Solution cards: full-bleed bg, amber top border, number, hover zoom
   ============================================================ */

/* Amber top border on solution cards */
#solutions .solutionCard {
  border-top: 3px solid var(--primary);
  min-height: 360px;
}

/* Background image zoom on hover via ::before transform */
#solutions .solutionCard::before {
  transform-origin: center;
  transform: scale(1);
  transition: opacity 200ms ease, transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

#solutions .solutionCard:hover::before {
  transform: scale(1.06);
  background-image:
    linear-gradient(180deg, rgba(255, 153, 51, 0.18) 0%, rgba(0, 0, 0, 0.7) 100%),
    var(--solution-bg, none);
}

/* Stronger gradient at default state */
#solutions .solutionCard::before {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.72) 100%),
    var(--solution-bg, none);
  opacity: 1;
}

/* Large background number (top-left/start) */
.solutionCard__num {
  position: absolute;
  top: 16px;
  inset-inline-start: 18px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 153, 51, 0.55);
  letter-spacing: -2px;
  z-index: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* Body wrapper to push content to bottom */
.solutionCard__body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 48px;
}

/* Hover: number brightens */
#solutions .solutionCard:hover .solutionCard__num {
  color: rgba(255, 153, 51, 0.85);
}

/* ============================================================
   STEP 3 — Section heading alternating alignment + amber border
   ============================================================ */

/* Centered sections: industries, process, integrations, faq, blog */
#industries .section__head,
#process .section__head,
#integrations .section__head,
#faq .section__head,
#blog .section__head {
  text-align: center;
  align-items: center;
}

#industries .section__head h2::after,
#process .section__head h2::after,
#integrations .section__head h2::after,
#faq .section__head h2::after,
#blog .section__head h2::after {
  margin-inline: auto;
}

/* Start-aligned sections with amber inline-start border (right side in RTL) */
#solutions .section__head,
#why .section__head,
#products .section__head,
#social-proof .section__head {
  border-inline-start: 4px solid var(--primary);
  padding-inline-start: 18px;
  text-align: start;
}

/* Ensure underline aligns start for these */
#solutions .section__head h2::after,
#why .section__head h2::after,
#products .section__head h2::after,
#social-proof .section__head h2::after {
  margin-inline-start: 0;
}

/* Bigger section heads overall — more breathing room */
.section__head {
  margin-bottom: 36px;
  gap: 12px;
}

/* ============================================================
   STEP 2 — Trust strip: editorial big numbers
   ============================================================ */

.trustStrip__item {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  min-height: 110px;
  height: auto;
}

/* Amber glow orb top-right of each card */
.trustStrip__item::before {
  content: "";
  position: absolute;
  top: -30px;
  inset-inline-end: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.22), transparent 70%);
  pointer-events: none;
}

/* Massive editorial number */
.trustStrip__item strong {
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  background: linear-gradient(145deg, #ff9933 20%, #cc6600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
  min-height: 1em;
}

/* Label — small, bold, uppercase, spaced */
.trustStrip__item span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0, 43, 68, 0.65);
  line-height: 1.4;
  max-width: 130px;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Thin amber bottom separator line */
.trustStrip__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.5), transparent);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .trustStrip__item {
    min-height: 100px;
    height: auto;
  }

  .trustStrip__item strong {
    font-size: clamp(30px, 6vw, 42px);
    letter-spacing: -0.5px;
  }
}

@media (max-width: 540px) {
  .trustStrip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .trustStrip__item {
    min-height: 90px;
    height: auto;
  }

  .trustStrip__item strong {
    font-size: clamp(28px, 8vw, 36px);
  }
}

/* ============================================================
   STEP 1 — Hero upgrade: frosted glass + massive title + word cycle
   ============================================================ */

/* Frosted glass panel behind hero content */
.heroVideo__content {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 20px;
  padding: 52px 56px;
  width: min(640px, 100%);
  margin-inline-start: 0;
  transform: translateX(clamp(14px, 2.2vw, 30px));
  display: grid;
  gap: 16px;
}

/* Bigger, bolder title */
.heroVideo__title {
  font-size: clamp(36px, 6.5vw, 76px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  font-weight: 900;
}

/* Kicker: live dot */
.heroVideo__kickerDot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff9933;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
}

.heroVideo__kickerDot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255, 153, 51, 0.5);
  animation: kickerPulse 2s ease-in-out infinite;
}

/* Word cycling wrapper */
.heroVideo__cycleWrap {
  display: block;
  position: relative;
  height: 1.15em;
  overflow: hidden;
  margin-top: 4px;
}

.heroVideo__titleStatic {
  display: inline-block;
  white-space: nowrap;
}

.heroVideo__cycleWord {
  display: block;
  position: absolute;
  inset-inline-start: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ff9933;
  font-size: inherit;
  line-height: inherit;
}

.heroVideo__cycleWord.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.heroVideo__cycleWord.is-leaving {
  opacity: 0;
  transform: translateY(-28px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Action buttons row */
.heroVideo__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

/* Ghost btn on dark bg — white stroke */
.heroVideo__ghostBtn {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.heroVideo__ghostBtn:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* CTA arrow — flip animation on hover */
.heroVideo__btnArrow {
  display: inline-block;
  transition: transform 220ms ease;
}

.btn:hover .heroVideo__btnArrow {
  transform: translateX(-5px);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .heroVideo__content {
    padding: 36px 14px;
    border-radius: 14px;
    margin-inline-start: 0;
    transform: translateX(clamp(6px, 1.6vw, 12px));
    gap: 12px;
  }
  .heroVideo__cycleWrap {
    height: 1.2em;
  }
}

/* --- Nav active link — stronger amber treatment --- */
.nav__link.is-active {
  background: linear-gradient(180deg, rgba(255, 153, 51, 0.28), rgba(255, 153, 51, 0.16));
  border-color: rgba(255, 153, 51, 0.48);
  color: var(--navy);
}

/* --- Navigation readability + polish override --- */
.header:not(.is-scrolled) .nav__menu,
.header.is-scrolled .nav__menu {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 242, 0.94));
  border-color: rgba(0, 43, 68, 0.16);
}

.nav__link,
.nav__link.is-active,
.nav__link:hover {
  color: var(--navy);
}

.nav__link {
  min-height: 48px;
  font-size: clamp(18px, 1.2vw, 20px);
  font-weight: 900;
}

@media (max-width: 980px) and (min-width: 761px) {
  .nav__menu {
    gap: 8px;
    padding: 8px 10px;
  }

  .nav__link {
    min-height: 44px;
    font-size: 16px;
    padding: 0 10px;
  }

  .nav__menu > .btn {
    height: 44px;
    font-size: 16px;
    padding-inline: 14px;
  }
}

@media (max-width: 760px) {
  .nav__menu {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 242, 0.96));
    border-color: rgba(0, 43, 68, 0.14);
  }

  .nav__link {
    min-height: 46px;
    font-size: 17px;
    padding: 0 14px;
    color: var(--navy);
    background: rgba(255, 153, 51, 0.08);
  }
}

/* ============================================================
   SUBPAGES — shared visual language (non-home pages)
   ============================================================ */

.subpage {
  position: relative;
  padding: 46px 0 76px;
  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%);
}

.subpage__head {
  margin-bottom: 18px;
}

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

.subpage__title {
  margin: 10px 0 8px;
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.25;
  color: var(--navy);
}

.subpage__desc {
  margin: 0;
  color: rgba(11, 31, 42, 0.78);
  font-weight: 700;
}

.subpage__panel {
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.subpage__panel + .subpage__panel {
  margin-top: 14px;
}

.richText p,
.richText li {
  color: rgba(11, 31, 42, 0.82);
  font-weight: 700;
}

.richText h2,
.richText h3 {
  color: var(--navy);
  margin-top: 1.1em;
  margin-bottom: 0.45em;
}

.richText h1,
.richText h4 {
  color: #082331;
  line-height: 1.45;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

.richText h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  border-inline-start: 4px solid rgba(255, 153, 51, 0.8);
  padding-inline-start: 12px;
}

.richText ul,
.richText ol {
  margin: 0.35em 0 1.1em;
  padding-inline-start: 1.3em;
}

.richText blockquote {
  margin: 1.2em 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 153, 51, 0.3);
  background: rgba(255, 153, 51, 0.09);
}

.richText blockquote p {
  margin: 0;
  font-weight: 800;
}

.richText img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.richText a {
  color: #0a5f89;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

.subpage__meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 51, 0.35);
  background: rgba(255, 153, 51, 0.11);
  color: rgba(11, 31, 42, 0.82);
  font-weight: 900;
  font-size: 12px;
}

.subpage__cover {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #eef2f6;
  margin: 16px 0 20px;
}

.subpage__cover img {
  width: 100%;
  height: min(52vw, 420px);
  object-fit: cover;
  display: block;
}

.subpage__back {
  margin-top: 18px;
}

.subpage__fullCol {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .subpage__cover img {
    height: 220px;
  }
}

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

/* Contact page */
.contactPage__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  align-items: start;
}

.contactPage__info {
  border: 1px solid rgba(0, 43, 68, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  background:
    radial-gradient(360px 200px at 90% 6%, rgba(255, 153, 51, 0.13), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.9));
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
  align-content: start;
}

.contactPage__title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  line-height: 1.4;
}

.contactPage__lead {
  margin: 0;
  color: rgba(11, 31, 42, 0.7);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.9;
}

.contactPage__infoCards {
  display: grid;
  gap: 10px;
}

.contactPage__infoList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contactPage__infoList li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(11, 31, 42, 0.75);
  font-weight: 600;
}

.contactPage__infoList li i {
  color: var(--primary);
  font-size: 16px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.contactPage__infoList li span {
  flex: 1;
}

.contactPage__infoLink {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 150ms ease;
}

.contactPage__infoLink:hover {
  border-bottom-color: var(--primary);
}

.contactPage__formWrap {
  border: 1px solid rgba(0, 43, 68, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  padding: 28px 24px;
}

.contactPage__form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.contactPage__form .field {
  display: grid;
  gap: 8px;
}

.contactPage__form .field__label {
  font-weight: 800;
}

.contactPage__form .field__input {
  min-height: 48px;
}

.contactPage__form textarea.field__input {
  min-height: 132px;
}

.contactPhoneInput,
.iti__tel-input {
  direction: ltr;
  text-align: left;
}

.contactPage__form .iti {
  width: 100%;
  direction: ltr;
}

.contactPage__form .iti__country-container {
  left: 0 !important;
  right: auto !important;
}

.contactPage__form .iti__selected-country-primary {
  min-height: 48px;
}

.contactPage__form .iti__dropdown-content {
  direction: ltr;
  border-radius: 12px !important;
  border-color: rgba(0, 43, 68, 0.15) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13) !important;
  overflow: hidden;
  margin-left: 0 !important;
  z-index: 100;
}

.contactPage__form .iti__search-input {
  direction: ltr;
  font-family: inherit;
  font-size: 14px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 43, 68, 0.1);
  outline: none;
  background: #fff;
}

.contactPage__form .iti__country-list {
  text-align: left;
  direction: ltr;
  max-width: min(360px, calc(100vw - 30px));
}

.contactPage__form .iti__country {
  direction: ltr;
  font-family: inherit;
  font-size: 14px;
}

.contactPage__form .iti__country.iti__highlight {
  background-color: rgba(255, 153, 51, 0.1);
}

.contactPage__form .iti--show-flags input.iti__tel-input {
  padding-left: 96px !important;
  padding-right: 14px !important;
  padding-inline-start: 96px !important;
  padding-inline-end: 14px !important;
}

.contactPage__formHead {
  margin-bottom: 20px;
}

.contactPage__formTitle {
  margin: 0 0 4px;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--navy);
  font-weight: 900;
}

.contactPage__formSubtitle {
  margin: 0;
  font-size: 14px;
  color: rgba(11, 31, 42, 0.62);
  font-weight: 700;
}

.contactPage__submitBtn {
  width: 100%;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  font-size: 17px;
}

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

.blogIntroPanel {
  border: 1px solid rgba(0, 43, 68, 0.12);
  border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(420px 180px at 88% 12%, rgba(255, 153, 51, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.blogIntroPanel__item {
  border: 1px solid rgba(0, 43, 68, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  padding: 10px;
  display: grid;
  gap: 6px;
}

.blogIntroPanel__item strong {
  color: var(--navy);
  font-size: 14px;
}

.blogIntroPanel__item span {
  color: rgba(11, 31, 42, 0.72);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.75;
}

.blogCard {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(0, 43, 68, 0.12);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.blogCard:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 153, 51, 0.34);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.blogCard > a {
  display: grid;
  height: 100%;
}

.blogCard__media {
  height: 186px;
  background: #eef2f6;
  position: relative;
  overflow: hidden;
}

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

.blogCard:hover .blogCard__media img {
  transform: scale(1.04);
}

.blogCard__mediaFallback {
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(0, 43, 68, 0.56);
  background:
    radial-gradient(260px 120px at 88% 12%, rgba(255, 153, 51, 0.24), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 243, 250, 0.96));
}

.blogCard__body {
  padding: 14px;
  display: grid;
  gap: 11px;
  align-content: start;
}

.blogCard__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(11, 31, 42, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.blogCard__pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 51, 0.35);
  background: rgba(255, 153, 51, 0.13);
  color: #8a4500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blogCard__title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

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

.blogCard__footer {
  margin-top: 4px;
}

.blogPostHeadMeta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.blogPostHeadMeta__pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 43, 68, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: #204356;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

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

.blogPostLayout__intro {
  border: 1px solid rgba(0, 43, 68, 0.09);
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 153, 51, 0.06), rgba(255, 255, 255, 0.9));
}

.blogPostContent {
  font-size: 17px;
  line-height: 2;
}

.blogPostContent > *:first-child {
  margin-top: 0;
}

.blogPostContent {
  max-width: min(820px, 100%);
  margin-inline: auto;
  color: rgba(11, 31, 42, 0.86);
}

.blogPostContent p {
  margin: 0 0 1.05em;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 2.05;
  letter-spacing: 0.01em;
}

.blogPostContent p:first-of-type {
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 800;
  color: #103447;
}

.blogPostContent h2,
.blogPostContent h3,
.blogPostContent h4 {
  margin-top: 1.4em;
  margin-bottom: 0.6em;
  line-height: 1.5;
}

.blogPostContent h2 {
  font-size: clamp(24px, 2.3vw, 30px);
  border-inline-start: 5px solid rgba(255, 153, 51, 0.86);
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.1), rgba(255, 153, 51, 0));
  padding: 8px 12px;
  border-radius: 10px;
}

.blogPostContent h3 {
  font-size: clamp(21px, 2vw, 26px);
}

.blogPostContent ul,
.blogPostContent ol {
  margin: 0.5em 0 1.1em;
  padding-inline-start: 1.4em;
  display: grid;
  gap: 6px;
}

.blogPostContent li {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.95;
}

.blogPostContent blockquote {
  margin: 1.4em 0;
  padding: 16px 18px;
  border-inline-start: 5px solid rgba(255, 153, 51, 0.9);
  border-radius: 14px;
  background:
    radial-gradient(320px 120px at 88% 10%, rgba(255, 153, 51, 0.16), transparent 64%),
    rgba(255, 153, 51, 0.08);
}

.blogPostContent blockquote p {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.95;
  font-weight: 800;
  color: #12384c;
}

.blogPostContent a {
  color: #0a628f;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blogPostContent img {
  margin: 1.1em auto;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.blogPostFooter {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 43, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.blogPostFooter__note {
  color: rgba(11, 31, 42, 0.66);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 980px) {
  .blogIntroPanel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .blogGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .subpage {
    padding: 30px 0 58px;
  }

  .subpage__panel {
    padding: 14px;
    border-radius: 14px;
  }

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

  .contactPage__info,
  .contactPage__formWrap {
    border-radius: 16px;
    padding: 20px 18px;
  }

  .contactPage__form .iti--show-flags input.iti__tel-input {
    padding-left: 88px !important;
    padding-inline-start: 88px !important;
  }

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

  .blogCard__media {
    height: 174px;
  }

  .blogCard__title {
    font-size: 18px;
  }

  .blogPostContent {
    font-size: 16px;
    line-height: 1.95;
  }

  .blogPostContent p {
    font-size: 16px;
    line-height: 1.95;
  }

  .blogPostContent p:first-of-type {
    font-size: 17px;
  }

  .blogPostContent h2 {
    font-size: 22px;
    padding: 7px 10px;
  }

  .blogPostContent h3 {
    font-size: 20px;
  }

  .blogPostFooter {
    align-items: stretch;
  }
}

/* ───── Breadcrumb ───── */
.breadcrumbNav {
  margin-bottom: 12px;
}
.breadcrumbNav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(11,31,42,0.56);
}
.breadcrumbNav__item + .breadcrumbNav__item::before {
  content: "/";
  margin-left: 4px;
  opacity: 0.45;
}
.breadcrumbNav__item a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 160ms;
}
.breadcrumbNav__item a:hover { opacity: 0.75; }
.breadcrumbNav__item--current { color: rgba(11,31,42,0.45); }

/* ───── Reading time ───── */
.blogReadingTime {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(11,31,42,0.54);
  white-space: nowrap;
}
.blogReadingTime--lg {
  font-size: 13px;
  background: rgba(0,43,68,0.05);
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,43,68,0.1);
}

/* ───── Blog card meta right group ───── */
.blogCard__metaRight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(11,31,42,0.54);
  font-size: 12px;
  font-weight: 800;
}

/* ───── Tag chips ───── */
.blogTagChips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.blogTagChip {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,43,68,0.12);
  background: rgba(0,43,68,0.04);
  color: rgba(11,31,42,0.66);
  font-size: 11px;
  font-weight: 700;
}
.blogPostHeadMeta__pill--tag {
  background: rgba(0,43,68,0.05);
  border-color: rgba(0,43,68,0.14);
  color: rgba(11,31,42,0.72);
}

/* ───── Share buttons ───── */
.blogShare {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid rgba(0,43,68,0.08);
  border-bottom: 1px solid rgba(0,43,68,0.08);
  margin: 4px 0;
}
.blogShare__label {
  font-size: 13px;
  font-weight: 800;
  color: rgba(11,31,42,0.6);
  white-space: nowrap;
}
.blogShare__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blogShare__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 160ms, transform 120ms;
  border: 1px solid rgba(0,43,68,0.14);
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  text-decoration: none;
}
.blogShare__btn:hover { opacity: 0.78; transform: translateY(-1px); }
.blogShare__btn--wa { border-color: rgba(37,211,102,0.4); background: rgba(37,211,102,0.08); color: #1a6f3a; }
.blogShare__btn--li { border-color: rgba(10,102,194,0.3); background: rgba(10,102,194,0.07); color: #0a66c2; }
.blogShare__btn--native { border-color: rgba(255,153,51,0.35); background: rgba(255,153,51,0.09); color: #7a3d00; }
.blogShare__btn--copy { border-color: rgba(0,43,68,0.16); }

/* ───── Related posts ───── */
.blogRelated {
  margin-top: 48px;
}
.blogRelated__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 18px;
}
.blogRelated__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* ───── Empty blog state ───── */
.blogEmpty {
  text-align: center;
  padding: 48px 16px;
  color: rgba(11,31,42,0.54);
  font-weight: 700;
}

@media (max-width: 980px) {
  .blogRelated__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .blogRelated__grid { grid-template-columns: 1fr; }
  .blogShare { flex-direction: column; align-items: flex-start; }
}
