:root {
  --ink: #142033;
  --muted: #5f6b7a;
  --line: #dfe6ee;
  --blue: #0b4d86;
  --blue-deep: #083a66;
  --orange: #f47b20;
  --surface: #ffffff;
  --surface-soft: #f5f8fb;
  --shadow: 0 18px 50px rgba(20, 32, 51, 0.16);
  --header-height: 106px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(223, 230, 238, 0.92);
  box-shadow: 0 8px 30px rgba(20, 32, 51, 0.08);
}

.top-strip {
  background: var(--blue-deep);
  color: #fff;
  font-size: 0.84rem;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 34px;
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  font-weight: 700;
  color: #fff;
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.35rem;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  width: clamp(170px, 18vw, 245px);
  height: auto;
}

.primary-nav {
  justify-self: end;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a,
.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  padding: 0 0.75rem;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.nav-dropdown > button:hover,
.nav-dropdown > button:focus-visible,
.primary-nav [aria-current="page"] {
  color: var(--blue);
  background: var(--surface-soft);
  outline: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  min-width: 280px;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: -7px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}

.dropdown-menu a {
  justify-content: flex-start;
  min-height: 44px;
  border-radius: 6px;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1;
}

.header-cta {
  background: var(--orange);
  color: #fff;
  padding: 0 1rem;
  box-shadow: 0 8px 20px rgba(244, 123, 32, 0.24);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #df6711;
  outline: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: #eef3f7;
}

.hero__image {
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 38, 0.78) 0%, rgba(6, 21, 38, 0.58) 28%, rgba(6, 21, 38, 0.06) 58%),
    linear-gradient(0deg, rgba(6, 21, 38, 0.18), rgba(6, 21, 38, 0));
}

.hero__content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  top: 50%;
  z-index: 1;
  width: min(560px, calc(100% - 48px));
  transform: translateY(-50%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: #d6e9fb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(2rem, 4.1vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero__content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  padding: 0 1.2rem;
}

.button--primary {
  background: var(--orange);
  color: #fff;
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.product-index {
  padding: 4.5rem 0 3.5rem;
  background: #fff;
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.eyebrow--dark {
  color: var(--blue);
}

.section-heading h2,
.solution-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.product-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-link {
  display: grid;
  gap: 0.45rem;
  min-height: 142px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-link span {
  color: var(--blue-deep);
  font-weight: 800;
  line-height: 1.2;
}

.product-link small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.product-link:hover,
.product-link:focus-visible {
  border-color: rgba(244, 123, 32, 0.55);
  box-shadow: 0 16px 34px rgba(20, 32, 51, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.solution-section {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, #f7fafc 0%, #ffffff 46%),
    var(--surface-soft);
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.solution-copy {
  display: grid;
  gap: 1rem;
}

.solution-copy h2 {
  max-width: 12ch;
}

.solution-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.solution-copy .lead {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.6;
}

.feature-panel {
  margin-top: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(20, 32, 51, 0.08);
}

.feature-panel h3 {
  margin: 0 0 0.85rem;
  color: var(--blue-deep);
  font-size: 1rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 28px;
  padding-left: 1.55rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(244, 123, 32, 0.55);
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.35rem;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.solution-media {
  display: grid;
  gap: 0.9rem;
  /* Prevent equal-height Gutenberg columns from stretching media cards. */
  align-content: start;
  grid-auto-rows: max-content;
}

.solution-media figure {
  margin: 0;
}

.media-feature,
.media-gallery figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 32, 51, 0.1);
}

.solution-media > .media-feature {
  align-self: start;
}

.media-feature img {
  width: 100%;
  aspect-ratio: 2.7 / 1;
  object-fit: cover;
  object-position: center;
}

.media-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 0.78fr;
  gap: 0.9rem;
}

.media-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.media-gallery figure:nth-child(3) img {
  object-position: center 42%;
}

.solution-media figcaption {
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.home #eas-systems .media-feature figcaption {
  text-align: center;
}

@media (max-width: 980px) {
  :root {
    --header-height: 94px;
  }

  .top-strip {
    display: none;
  }

  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-grid;
    grid-template-columns: 22px auto;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font-weight: 800;
    padding: 0.55rem 0.7rem;
  }

  .menu-toggle span:not(.menu-toggle__label) {
    display: block;
    width: 22px;
    height: 2px;
    grid-column: 1;
    background: currentColor;
  }

  .menu-toggle__label {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    justify-self: stretch;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.is-menu-open .primary-nav {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 0;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0.5rem 0;
  }

  .primary-nav a,
  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 0.65rem;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 0.5rem 0.8rem;
    border: 0;
    border-left: 3px solid var(--orange);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

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

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .hero__image {
    height: calc(100vh - var(--header-height));
    min-height: 590px;
    object-position: 42% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(6, 21, 38, 0.82) 0%, rgba(6, 21, 38, 0.58) 45%, rgba(6, 21, 38, 0.18) 100%);
  }

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

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

  .solution-copy h2 {
    max-width: 16ch;
  }
}

@media (max-width: 640px) {
  .header-shell {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 178px;
  }

  .hero__image {
    min-height: 620px;
    object-position: 38% center;
  }

  .hero__content {
    left: 20px;
    width: calc(100% - 40px);
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(1.85rem, 9.5vw, 3rem);
  }

  .hero__actions {
    display: grid;
  }

  .product-index,
  .solution-section {
    padding: 3.25rem 0;
  }

  .section-heading h2,
  .solution-copy h2 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  .product-links,
  .feature-list,
  .media-gallery {
    grid-template-columns: 1fr;
  }

  .product-link {
    min-height: 118px;
  }

  .solution-actions {
    display: grid;
  }

  .media-feature img,
  .media-gallery img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* WordPress menu markup */
.primary-nav .menu-item-has-children {
  position: relative;
  display: flex;
  align-items: center;
}

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  min-width: 280px;
  margin: 0;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu,
.primary-nav .menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu-toggle {
  width: 30px;
  min-height: 42px;
  margin-left: -0.65rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

/* Gutenberg blocks retain the original static-site classes. */
.wp-block-cover.hero {
  padding: 0;
}

.hero .wp-block-cover__background {
  background:
    linear-gradient(90deg, rgba(6, 21, 38, 0.78) 0%, rgba(6, 21, 38, 0.58) 28%, rgba(6, 21, 38, 0.06) 58%),
    linear-gradient(0deg, rgba(6, 21, 38, 0.18), rgba(6, 21, 38, 0)) !important;
  opacity: 1 !important;
}

.hero .wp-block-cover__inner-container {
  width: 100%;
}

.wp-block-button.button {
  padding: 0;
}

.wp-block-button.button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  padding: 0 1.2rem;
  font-weight: 800;
}

.wp-block-button.button--primary .wp-block-button__link {
  background: var(--orange);
  color: #fff;
}

.wp-block-button.button--secondary .wp-block-button__link {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.product-link h3,
.product-link p {
  margin: 0;
}

.product-link h3 {
  color: var(--blue-deep);
  font-size: 1rem;
  line-height: 1.2;
}

.product-link p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.solution-grid.wp-block-columns {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.solution-grid > .wp-block-column {
  min-width: 0;
}

.media-gallery.wp-block-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 0.78fr;
  gap: 0.9rem;
}

.media-gallery.wp-block-gallery > figure.wp-block-image {
  width: auto !important;
}

.additional-media-gallery.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.additional-media-gallery.wp-block-gallery > figure.wp-block-image {
  width: auto !important;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 32, 51, 0.1);
}

.additional-media-gallery.wp-block-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link .wp-block-button__link {
  border: 0 !important;
  color: var(--blue) !important;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Editable product bands used to complete the homepage. */
.product-detail-section {
  margin: 0;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.product-detail-section--white {
  background: #fff;
}

.product-detail-section--soft {
  background: var(--surface-soft);
}

.product-detail-section--blue {
  background: var(--blue-deep);
  color: #fff;
}

.product-detail-grid.wp-block-columns {
  display: grid;
  grid-template-columns: minmax(0, 13fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: stretch;
  margin-bottom: 0;
}

#open-display-security .product-detail-grid,
#cctv .product-detail-grid {
  grid-template-columns: minmax(0, 7fr) minmax(0, 13fr);
}

#eas-tagging-solutions .product-detail-grid {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: clamp(0.5rem, 2vw, 1.5rem) 0;
}

.product-detail-copy h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
}

.product-detail-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Polished homepage feature lists for tagging and display protection. */
.home #eas-tagging-solutions .product-detail-copy ul,
.home #open-display-security .product-detail-copy ul {
  display: grid;
  gap: 0.7rem 1.1rem;
  width: 100%;
  margin: 1.35rem 0 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.08);
  list-style: none;
}

.home #eas-tagging-solutions .product-detail-copy ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home #open-display-security .product-detail-copy ul {
  grid-template-columns: 1fr;
  background: var(--surface-soft);
}

.home #eas-tagging-solutions .product-detail-copy li,
.home #open-display-security .product-detail-copy li {
  position: relative;
  min-height: 28px;
  padding-left: 1.55rem;
  color: var(--ink);
  line-height: 1.45;
}

.home #eas-tagging-solutions .product-detail-copy li::before,
.home #open-display-security .product-detail-copy li::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(244, 123, 32, 0.5);
}

.product-detail-actions {
  margin-top: auto;
  padding-top: 2rem;
}

.product-detail-media {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  min-width: 0;
}

.product-detail-media figure {
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 32, 51, 0.14);
}

.product-detail-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.product-detail-section--blue .product-detail-copy h2,
.product-detail-section--blue .product-detail-copy > p {
  color: #fff;
}

.product-detail-section--blue .eyebrow {
  color: #d6e9fb;
}

.product-detail-section--blue .product-detail-media figure {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

/* Footfall section: heading, panorama, then supporting image and copy. */
.footfall-section {
  margin: 0;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--blue-deep);
  color: #fff;
}

/*
 * Existing sites may have inserted the new Footfall pattern inside the first
 * column of the older Footfall layout. Expand that nested pattern to full width.
 */
.product-detail-section--blue:has(.footfall-section) {
  padding: 0;
}

.product-detail-section--blue .product-detail-grid:has(.footfall-section) {
  display: block;
}

.product-detail-section--blue .product-detail-grid:has(.footfall-section)
  > .wp-block-column:not(:has(.footfall-section)) {
  display: none;
}

.product-detail-section--blue .footfall-section .footfall-section__inner {
  width: 100% !important;
}

.footfall-section .footfall-section__inner {
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: 1180px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.footfall-section__inner > * {
  width: 100%;
  max-width: none !important;
}

.footfall-section__inner > h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
}

.footfall-section__hero {
  position: relative;
  width: 100%;
  margin: 2rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.home .footfall-section__hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: clamp(0.8rem, 2vw, 1.5rem);
  left: clamp(0.8rem, 2vw, 1.5rem);
  width: clamp(180px, 28vw, 360px);
  height: clamp(48px, 6vw, 70px);
  border: 0;
  background-color: transparent;
  background-image: url("../images/footfallcam-logo-bg-v2.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  filter: drop-shadow(0 8px 16px rgba(6, 22, 40, 0.18));
  pointer-events: none;
}

.footfall-section__hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footfall-section__lower.wp-block-columns {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
  margin: clamp(2rem, 5vw, 4rem) 0 0;
}

.footfall-section__image {
  min-width: 0;
}

.footfall-section__image figure {
  height: 100%;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.footfall-section__image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.footfall-section__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0.5rem 0;
}

.footfall-section__copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.footfall-section__copy > p {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.7;
}

.footfall-section__actions {
  margin-top: auto;
  padding-top: 2rem;
}

/* Reusable inner-page and footer styling. */
.page-main {
  min-height: 60vh;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

/* Subtle technical grid used only across the Products page family. */
.slp-product-page .page-main {
  background-color: #f3f6f8;
  background-image:
    linear-gradient(rgba(201, 211, 221, 0.48) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 211, 221, 0.48) 1px, transparent 1px);
  background-position: center top;
  background-size: 28px 28px;
}

.slp-product-page .entry {
  position: relative;
}

.entry-header h1,
.error-404 h1 {
  margin: 0 0 1.5rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.entry-content {
  color: var(--muted);
  line-height: 1.7;
}

.entry-content > * {
  max-width: 800px;
}

.entry-content > .alignwide {
  max-width: 1180px;
}

.entry-content > .alignfull {
  max-width: none;
}

.slp-page-eas-systems .entry-header h1 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.slp-page-eas-systems .entry-content h2,
.slp-page-eas-systems .entry-content h3 {
  color: var(--blue-deep);
}

.slp-page-eas-systems .entry-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.slp-page-eas-systems .entry-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.9rem;
  font-size: clamp(1.2rem, 1.75vw, 1.5rem);
}

.slp-page-eas-systems .entry-content ul:not(.wp-block-gallery):not(.blocks-gallery-grid) {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 2rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 32, 51, 0.08);
  list-style: none;
}

.slp-page-eas-systems .entry-content li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink);
}

.slp-page-eas-systems .entry-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(244, 123, 32, 0.55);
}

.slp-page-eas-systems .entry-content .eas-systems-detail-grid.wp-block-columns {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: start;
  margin: 0 0 2rem;
}

.slp-page-eas-systems .entry-content .eas-systems-detail-grid__media,
.slp-page-eas-systems .entry-content .eas-systems-detail-grid__copy {
  min-width: 0;
}

.slp-page-eas-systems .entry-content .eas-systems-detail-grid__copy {
  align-self: start;
  margin-top: -0.15rem;
}

.slp-page-eas-systems .entry-content .eas-systems-detail-grid__copy h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.slp-page-eas-systems .entry-content .eas-systems-detail-grid__copy ul:not(.wp-block-gallery):not(.blocks-gallery-grid) {
  margin: 0.75rem 0 1.35rem;
}

.slp-page-eas-systems .entry-content .eas-systems-media-stack,
.slp-page-eas-systems .entry-content .eas-systems-media-stack--replacement {
  display: grid;
  gap: 0.9rem;
  max-width: 320px;
}

.slp-page-eas-systems .entry-content .eas-systems-media-stack > figure.wp-block-image,
.slp-page-eas-systems .entry-content .eas-systems-media-stack--replacement > figure.wp-block-image {
  width: auto !important;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 32, 51, 0.1);
}

.slp-page-eas-systems .entry-content .eas-systems-media-stack img,
.slp-page-eas-systems .entry-content .eas-systems-media-stack--replacement img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.post-list {
  display: grid;
  gap: 2rem;
}

.post-summary {
  border-bottom: 1px solid var(--line);
}

/* Products category landing page. */
.slp-page-products .page-main {
  padding-top: 0;
  background-color: #f3f6f8;
  background-image: none;
}

.products-template {
  color: var(--ink);
}

.products-hero {
  position: relative;
  display: flex;
  min-height: clamp(420px, 34vw, 480px);
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  overflow: hidden;
  background-color: var(--blue-deep);
  background-image:
    linear-gradient(rgba(5, 35, 64, 0.45), rgba(5, 35, 64, 0.45)),
    url("../images/products-page-background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.products-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32px;
  background: linear-gradient(to bottom, rgba(243, 246, 248, 0), #f3f6f8);
  pointer-events: none;
}

.products-hero__inner {
  position: relative;
  z-index: 1;
}

.products-hero__copy {
  max-width: 900px;
}

.products-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.products-hero .lead {
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.products-hero .eyebrow {
  color: #fff;
}

.products-categories {
  padding: clamp(2.8rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.products-section-heading {
  margin-bottom: 1.5rem;
}

.products-section-heading h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

.products-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.products-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.15rem;
  min-height: 285px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.products-card:hover,
.products-card:focus-within {
  border-color: rgba(244, 123, 32, 0.5);
  box-shadow: 0 18px 44px rgba(20, 32, 51, 0.13);
  transform: translateY(-3px);
}

.products-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(244, 123, 32, 0.1);
  color: var(--orange);
}

.products-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.products-card h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.18rem;
  line-height: 1.2;
}

.products-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.products-card__button {
  width: fit-content;
  min-height: 42px;
  padding: 0 1rem;
}

.products-card__button:hover,
.products-card__button:focus-visible {
  background: #df6711;
}

.products-why {
  padding: 0 0 clamp(1rem, 2vw, 1.5rem);
}

.products-why__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border-radius: 8px;
  background: var(--blue-deep);
  padding: clamp(1.6rem, 4vw, 2.5rem);
  color: #fff;
  box-shadow: 0 18px 44px rgba(20, 32, 51, 0.14);
}

.products-why .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.products-why h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.14;
}

.products-why__list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-why__list li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.products-why__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px var(--blue-deep), 0 0 0 1px rgba(244, 123, 32, 0.8);
}

/* Privacy Policy page. */
.privacy-template {
  color: var(--ink);
}

.privacy-hero {
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.privacy-hero__inner {
  max-width: 920px;
}

.privacy-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.privacy-hero .lead {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.privacy-updated {
  display: inline-flex;
  margin: 1.4rem 0 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-deep);
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.privacy-content {
  padding: 0 0 clamp(1rem, 2vw, 1.5rem);
}

.privacy-content__inner {
  display: grid;
  gap: 1rem;
  max-width: 980px;
}

.privacy-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.privacy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(1.2rem, 2.5vw, 1.55rem);
  box-shadow: 0 12px 30px rgba(20, 32, 51, 0.07);
}

.privacy-card--intro {
  border-left: 4px solid var(--orange);
}

.privacy-card h2,
.privacy-contact h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.25;
}

.privacy-card p,
.privacy-contact p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.privacy-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  border-radius: 8px;
  background: var(--blue-deep);
  color: #fff;
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 18px 44px rgba(20, 32, 51, 0.14);
}

.privacy-contact .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.privacy-contact h2 {
  color: #fff;
}

.privacy-contact p {
  color: rgba(255, 255, 255, 0.82);
}

.privacy-contact address {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
  line-height: 1.45;
}

.privacy-contact strong {
  color: #fff;
}

.privacy-contact a {
  color: #fff;
  font-weight: 800;
  transition: color 160ms ease;
}

.privacy-contact a:hover,
.privacy-contact a:focus-visible {
  color: var(--orange);
  outline: none;
}

.terms-section-grid {
  align-items: stretch;
}

.terms-template .privacy-card p a {
  color: var(--blue-deep);
  font-weight: 800;
}

/* Contact page. */
.contact-template {
  color: var(--ink);
}

.contact-hero {
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(2.4rem, 5vw, 3.7rem);
}

.contact-hero__inner {
  max-width: 900px;
}

.contact-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-hero .lead {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.contact-main {
  padding: 0 0 clamp(1rem, 2vw, 1.5rem);
}

.contact-main__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.4rem, 4vw, 2.5rem);
  align-items: start;
}

.contact-info-panel,
.contact-form-panel {
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.08);
}

.contact-info-panel {
  display: grid;
  gap: 1.45rem;
  background: var(--blue-deep);
  color: #fff;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.contact-info-panel .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-info-panel h2,
.contact-trust-message h3 {
  margin: 0;
  color: #fff;
  line-height: 1.2;
}

.contact-info-panel h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.contact-info-panel p,
.contact-details-list li,
.contact-trust-message p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.contact-info-panel p,
.contact-trust-message p {
  margin: 0.75rem 0 0;
}

.contact-details-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-details-list li {
  display: grid;
  gap: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 0.9rem;
}

.contact-details-list span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details-list a,
.contact-trust-message a {
  color: #fff;
  font-weight: 800;
  transition: color 160ms ease;
}

.contact-details-list a:hover,
.contact-details-list a:focus-visible,
.contact-trust-message a:hover,
.contact-trust-message a:focus-visible {
  color: var(--orange);
  outline: none;
}

.contact-trust-message {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.contact-trust-message h3 {
  font-size: 1.05rem;
}

.contact-form-panel {
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form__field {
  display: grid;
  gap: 0.45rem;
}

.contact-form__field label {
  color: var(--blue-deep);
  font-weight: 800;
  line-height: 1.3;
}

.contact-form__field label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.4;
  padding: 0.78rem 0.85rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form__field select {
  min-height: 48px;
}

.contact-form__field textarea {
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: rgba(244, 123, 32, 0.75);
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.14);
  outline: none;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__submit {
  width: fit-content;
  min-height: 48px;
  border: 0;
  cursor: pointer;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: #df6711;
}

.contact-alert {
  margin-bottom: 1rem;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  line-height: 1.5;
}

.contact-alert--success {
  border: 1px solid rgba(22, 128, 88, 0.25);
  background: #edf8f3;
  color: #176044;
}

.contact-alert--error {
  border: 1px solid rgba(178, 58, 58, 0.25);
  background: #fff1f1;
  color: #8e2b2b;
}

.footer-cta {
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.1rem, 4vw, 3rem) 0;
}

.footer-cta__copy {
  max-width: 680px;
}

.footer-cta h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  line-height: 1.12;
}

.footer-cta p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 4px;
  padding: 0 1.15rem;
  font-weight: 800;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-button:hover,
.footer-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.footer-button--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.2);
}

.footer-button--primary:hover,
.footer-button--primary:focus-visible {
  background: #df6711;
}

.footer-button--secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue-deep);
}

.footer-button--secondary:hover,
.footer-button--secondary:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  padding: clamp(2.3rem, 4.5vw, 3.5rem) 0 1.35rem;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.site-footer__brand-column,
.footer-links,
.footer-contact {
  min-width: 0;
}

.site-footer__brand {
  display: inline-flex;
  margin-bottom: 1rem;
}

.site-footer__brand img {
  width: min(200px, 100%);
  height: auto;
}

.site-footer__brand-column p,
.site-footer__bottom p {
  margin: 0;
}

.site-footer__brand-column p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-links ul,
.footer-contact ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact a,
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.74);
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--orange);
  outline: none;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.footer-contact span {
  color: #fff;
  font-weight: 800;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.2rem;
  font-size: 0.9rem;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

@media (max-width: 980px) {
  .footer-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta__actions {
    justify-content: flex-start;
  }

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

  .site-footer__brand-column {
    grid-column: 1 / -1;
  }

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

  .products-why__inner {
    grid-template-columns: 1fr;
  }

  .privacy-section-grid,
  .privacy-contact {
    grid-template-columns: 1fr;
  }

  .contact-main__inner {
    grid-template-columns: 1fr;
  }

  .primary-nav .menu-item-has-children {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .primary-nav .sub-menu {
    position: static;
    display: none;
    grid-column: 1 / -1;
    min-width: 0;
    margin: 0 0 0.5rem 0.8rem;
    border: 0;
    border-left: 3px solid var(--orange);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav .menu-item-has-children.is-open > .sub-menu {
    display: grid;
  }

  .submenu-toggle {
    margin: 0;
  }

  .solution-grid.wp-block-columns {
    grid-template-columns: 1fr;
  }

  .product-detail-grid.wp-block-columns,
  #eas-tagging-solutions .product-detail-grid,
  #open-display-security .product-detail-grid,
  #cctv .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-copy {
    min-height: 0;
  }

  .product-detail-media {
    grid-row: auto;
  }

  .footfall-section__lower.wp-block-columns {
    grid-template-columns: 1fr;
  }

  .footfall-section__copy {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .slp-page-eas-systems .entry-content .eas-systems-detail-grid.wp-block-columns {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .media-gallery.wp-block-gallery,
  .additional-media-gallery.wp-block-gallery {
    grid-template-columns: 1fr;
  }

  .footer-cta__inner {
    padding: 2rem 0;
  }

  .footer-cta__actions,
  .footer-button {
    width: 100%;
  }

  .site-footer__inner {
    padding: 2rem 0 1.2rem;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__brand-column {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }

  .products-hero {
    min-height: 390px;
    padding: 3.25rem 0;
  }

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

  .products-card {
    min-height: 0;
  }

  .products-card__button {
    width: 100%;
  }

  .products-why__inner {
    padding: 1.4rem;
  }

  .privacy-hero {
    padding-bottom: 2.3rem;
  }

  .privacy-card,
  .privacy-contact {
    padding: 1.15rem;
  }

  .privacy-updated {
    border-radius: 8px;
  }

  .contact-hero {
    padding-bottom: 2.3rem;
  }

  .contact-form-panel,
  .contact-info-panel {
    padding: 1.15rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__submit {
    width: 100%;
  }

  .product-detail-section {
    padding: 3.5rem 0;
  }

  .product-detail-copy h2 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  .home #eas-tagging-solutions .product-detail-copy ul {
    grid-template-columns: 1fr;
  }

  .home #eas-tagging-solutions .product-detail-copy ul,
  .home #open-display-security .product-detail-copy ul {
    padding: 1rem;
  }

  .home .footfall-section__hero::before {
    width: min(62%, 280px);
    height: 46px;
    background-size: calc(100% - 1rem) auto;
  }

  .footfall-section {
    padding: 3.5rem 0;
  }

  .footfall-section__image figure,
  .footfall-section__image img {
    min-height: 280px;
  }

  .footfall-section__copy {
    min-height: 0;
  }

}

/* Dedicated theme-rendered EAS Systems page. */
.slp-page-eas-systems .page-main {
  padding: 0 0 5rem;
}

.eas-systems-template {
  max-width: none;
}

.eas-systems-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
}

.eas-systems-page-intro__copy h1 {
  margin: 0;
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.eas-systems-page-intro__copy .lead {
  max-width: 60ch;
  margin: 1.2rem 0 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.65;
}

.eas-systems-page-intro__copy p:not(.eyebrow):not(.lead) {
  max-width: 68ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.eas-systems-page-intro__stats {
  display: grid;
  gap: 0.9rem;
}

.eas-stat-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.08);
}

.eas-stat-card strong {
  color: var(--blue-deep);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1;
}

.eas-stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.eas-systems-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 2.4rem;
}

.eas-systems-anchor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.95rem;
  border: 1px solid rgba(11, 77, 134, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(20, 32, 51, 0.06);
}

.eas-systems-anchor-nav a:hover,
.eas-systems-anchor-nav a:focus-visible {
  border-color: rgba(244, 123, 32, 0.45);
  color: var(--orange);
  outline: none;
}

.eas-product-section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.eas-product-section--white {
  background: rgba(255, 255, 255, 0.72);
}

.eas-product-section--soft {
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.96) 0%, rgba(240, 245, 249, 0.9) 100%);
}

.eas-product-section--grid {
  background:
    linear-gradient(rgba(201, 211, 221, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 211, 221, 0.24) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 248, 251, 0.9) 100%);
  background-size: 28px 28px, 28px 28px, auto;
  background-position: center top, center top, center top;
}

.eas-product-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2rem, 4vw, 3.2rem);
  align-items: stretch;
}

.eas-product-section__grid.is-reversed .eas-product-section__media {
  order: 2;
}

.eas-product-section__grid.is-reversed .eas-product-section__copy {
  order: 1;
}

.eas-product-section__media,
.eas-product-section__copy {
  min-width: 0;
}

.eas-product-image-frame {
  height: 100%;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at top left, rgba(11, 77, 134, 0.08), transparent 40%),
    #fff;
  box-shadow: 0 24px 54px rgba(20, 32, 51, 0.14);
}

.eas-product-image-frame img {
  width: 100%;
  height: 100%;
}

.eas-product-image-frame--contain img {
  object-fit: contain;
  padding: clamp(1.1rem, 2.2vw, 1.8rem);
}

.eas-product-image-frame--trim img {
  transform: scale(1.09);
  transform-origin: center;
}

.eas-product-image-frame--trim-vertical img {
  transform: scale(1.13);
  transform-origin: center;
}

.eas-product-image-frame--cover img {
  object-fit: cover;
}

.eas-product-image-frame--compact img {
  width: 84%;
  margin: 0 auto;
}

.eas-product-image-frame--reduced img,
.eas-product-image-frame--reduced-xl img {
  width: 76%;
  margin: 0 auto;
}

.eas-product-image-frame--reduced-xl img {
  width: 60%;
}

.eas-product-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

.eas-product-section__eyebrow {
  margin: 0 0 0.6rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eas-product-section__copy h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.eas-product-section__description {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.eas-product-section__cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.eas-info-card {
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(20, 32, 51, 0.08);
}

.eas-info-card h3 {
  margin: 0 0 0.95rem;
  color: var(--blue-deep);
  font-size: 1rem;
}

.eas-spec-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.eas-spec-list div {
  display: grid;
  grid-template-columns: minmax(128px, 0.72fr) minmax(0, 1.28fr);
  gap: 0.8rem;
  align-items: start;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(223, 230, 238, 0.9);
}

.eas-spec-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.eas-spec-list dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.eas-spec-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
}

.eas-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eas-feature-list li {
  position: relative;
  min-height: 28px;
  padding-left: 1.55rem;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.eas-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(244, 123, 32, 0.45);
}

.eas-product-section__actions {
  margin-top: 1.35rem;
}

.eas-inline-cta {
  width: fit-content;
}

@media (min-width: 1200px) {
  .slp-page-eas-systems .page-main {
    padding-bottom: 3rem;
  }

  .eas-systems-page-intro {
    gap: 1.6rem;
    padding: 2.1rem 0 1rem;
  }

  .eas-systems-page-intro__copy h1 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
  }

  .eas-systems-page-intro__copy .lead {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .eas-systems-page-intro__copy p:not(.eyebrow):not(.lead) {
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .eas-systems-anchor-nav {
    gap: 0.55rem;
    padding-bottom: 1.25rem;
  }

  .eas-systems-anchor-nav a {
    min-height: 34px;
    padding: 0 0.72rem;
    font-size: 0.8rem;
  }

  .eas-product-section {
    padding: 1.7rem 0;
  }

  .eas-product-section__grid {
    gap: 1.25rem;
  }

  .eas-product-image-frame {
    min-height: 320px;
  }

  .eas-product-image-frame--contain img {
    padding: 0.65rem 0.85rem;
  }

  .eas-product-image-frame--compact img {
    width: 68%;
  }

  .eas-product-image-frame--reduced img {
    width: 64%;
  }

  .eas-product-image-frame--reduced-xl img {
    width: 50%;
  }

  .eas-product-section__copy {
    min-height: 320px;
  }

  .eas-product-section__eyebrow {
    margin-bottom: 0.3rem;
    font-size: 0.7rem;
  }

  .eas-product-section__copy h2 {
    font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  }

  .eas-product-section__description {
    margin-top: 0.55rem;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .eas-product-section__cards {
    gap: 0.65rem;
    margin-top: 0.8rem;
  }

  .eas-info-card {
    padding: 0.75rem 0.85rem 0.85rem;
  }

  .eas-info-card h3 {
    margin-bottom: 0.6rem;
    font-size: 0.84rem;
  }

  .eas-spec-list {
    gap: 0.35rem;
  }

  .eas-spec-list div {
    gap: 0.5rem;
    padding-top: 0.42rem;
  }

  .eas-spec-list dt {
    font-size: 0.74rem;
  }

  .eas-spec-list dd {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .eas-feature-list {
    gap: 0.35rem 0.7rem;
  }

  .eas-feature-list li {
    min-height: 20px;
    padding-left: 1.15rem;
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .eas-feature-list li::before {
    top: 0.18rem;
    width: 0.6rem;
    height: 0.6rem;
  }

  .eas-product-section__actions {
    margin-top: 0.8rem;
  }

  .eas-inline-cta {
    min-height: 36px;
    padding: 0 0.75rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 980px) {
  .eas-systems-page-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .eas-product-section__grid,
  .eas-product-section__grid.is-reversed {
    grid-template-columns: 1fr;
  }

  .eas-product-section__grid.is-reversed .eas-product-section__media,
  .eas-product-section__grid.is-reversed .eas-product-section__copy {
    order: initial;
  }

  .eas-product-image-frame,
  .eas-product-section__copy {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .slp-page-eas-systems .page-main {
    padding-bottom: 3.5rem;
  }

  .eas-systems-anchor-nav {
    gap: 0.55rem;
    padding-bottom: 1.8rem;
  }

  .eas-systems-anchor-nav a {
    min-height: 38px;
    font-size: 0.86rem;
  }

  .eas-product-section {
    padding: 3rem 0;
  }

  .eas-product-image-frame {
    min-height: 320px;
  }

  .eas-product-image-frame--compact img {
    width: 100%;
  }

  .eas-product-image-frame--reduced img,
  .eas-product-image-frame--reduced-xl img {
    width: 100%;
  }

  .eas-product-image-frame--trim img,
  .eas-product-image-frame--trim-vertical img {
    transform: none;
  }

  .eas-feature-list,
  .eas-spec-list div {
    grid-template-columns: 1fr;
  }

  .eas-spec-list div {
    gap: 0.25rem;
  }
}

/* Dedicated theme-rendered EAS Tagging Solutions page. */
.slp-page-eas-tagging-solutions .page-main {
  padding: 0 0 5rem;
}

.eas-tagging-template {
  max-width: none;
}

.tagging-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.2rem;
}

.tagging-page-hero__copy,
.tagging-page-hero__stats {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(20, 32, 51, 0.12);
}

.tagging-page-hero__copy {
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background:
    radial-gradient(circle at top right, rgba(244, 123, 32, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(11, 77, 134, 0.14), transparent 36%),
    linear-gradient(rgba(200, 211, 222, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 211, 222, 0.22) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 252, 0.96) 100%);
  background-size: auto, auto, 26px 26px, 26px 26px, auto;
  background-position: center, center, center top, center top, center;
}

.tagging-page-hero__copy h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2.3rem, 5.4vw, 4.6rem);
  line-height: 0.98;
}

.tagging-page-hero__copy .lead {
  max-width: 62ch;
  margin: 1.1rem 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.72;
}

.tagging-page-hero__copy p:not(.eyebrow):not(.lead) {
  max-width: 70ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.tagging-page-hero__stats {
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background:
    radial-gradient(circle at top left, rgba(11, 77, 134, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(247, 250, 252, 0.98) 0%, rgba(238, 244, 249, 0.96) 100%);
}

.tagging-stat-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1.1rem 1.15rem;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}

.tagging-stat-card strong {
  color: var(--blue-deep);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.tagging-stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.tagging-page-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  padding-bottom: 2.4rem;
}

.tagging-page-nav a {
  display: grid;
  gap: 0.42rem;
  min-height: 100%;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(20, 32, 51, 0.08);
}

.tagging-page-nav a strong {
  color: var(--blue-deep);
  font-size: 0.95rem;
  line-height: 1.25;
}

.tagging-page-nav a span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

.tagging-page-nav a:hover,
.tagging-page-nav a:focus-visible {
  border-color: rgba(244, 123, 32, 0.42);
  transform: translateY(-2px);
  outline: none;
}

.tagging-category {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.tagging-category--fashion {
  background:
    linear-gradient(180deg, rgba(251, 248, 244, 0.94) 0%, rgba(245, 241, 237, 0.96) 100%);
}

.tagging-category--health {
  background:
    radial-gradient(circle at top right, rgba(125, 173, 208, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(247, 251, 253, 0.98) 0%, rgba(239, 246, 249, 0.98) 100%);
}

.tagging-category--cellar {
  background:
    radial-gradient(circle at top left, rgba(244, 123, 32, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(250, 246, 241, 0.98) 0%, rgba(243, 236, 229, 0.98) 100%);
}

.tagging-category--hardware {
  background:
    linear-gradient(rgba(203, 211, 219, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 211, 219, 0.22) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 248, 250, 0.98) 0%, rgba(238, 243, 247, 0.98) 100%);
  background-size: 24px 24px, 24px 24px, auto;
}

.tagging-category__inner {
  display: grid;
  gap: 1.55rem;
}

.tagging-category__story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.4rem, 4vw, 2.6rem);
  align-items: stretch;
}

.tagging-category__story.is-reversed .tagging-category__copy {
  order: 2;
}

.tagging-category__story.is-reversed .tagging-category__media {
  order: 1;
}

.tagging-category__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.tagging-category__media {
  min-width: 0;
}

.tagging-category__eyebrow {
  margin: 0 0 0.6rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tagging-category__copy h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  line-height: 1.08;
}

.tagging-category__description,
.tagging-category__support {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.tagging-category__panel {
  margin-top: 1.2rem;
  padding: 1.2rem 1.2rem 1.25rem;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(20, 32, 51, 0.08);
}

.tagging-category__panel h3 {
  margin: 0 0 0.85rem;
  color: var(--blue-deep);
  font-size: 1rem;
}

.tagging-application-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tagging-application-list li {
  position: relative;
  min-height: 28px;
  padding-left: 1.5rem;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.tagging-application-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(244, 123, 32, 0.45);
}

.tagging-category__actions {
  margin-top: 1.2rem;
}

.tagging-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-rows: repeat(3, minmax(0, 150px));
  gap: 0.95rem;
  height: 100%;
}

.tagging-mosaic:has(.is-lanyard-demo) {
  grid-template-rows: repeat(3, minmax(0, 125px));
}

.tagging-media-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(11, 77, 134, 0.06), transparent 35%),
    #fff;
  box-shadow: 0 20px 46px rgba(20, 32, 51, 0.12);
}

.tagging-media-card.is-primary {
  grid-row: 1 / span 3;
}

.tagging-media-card.is-portrait {
  border-radius: 24px 24px 14px 14px;
}

.tagging-media-card.is-soft {
  border-radius: 14px 36px 14px 14px;
}

.tagging-media-card.is-lanyard-demo {
  grid-row: span 2;
  min-height: 0;
}

.tagging-media-card.is-tall {
  grid-row: span 2;
}

.tagging-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tagging-media-card.is-contain img {
  object-fit: contain;
  padding: 1rem;
}

.tagging-media-card.is-lanyard-demo img {
  object-fit: contain;
  background: #fff;
  padding: 0.35rem;
}

.tagging-media-card figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.12);
}

.tagging-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tagging-highlight-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(20, 32, 51, 0.08);
}

.tagging-highlight-card__media {
  display: grid;
  place-items: center;
  min-height: 130px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(247, 249, 251, 0.96) 0%, rgba(242, 246, 249, 0.96) 100%);
}

.tagging-highlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.85rem;
}

.tagging-highlight-card.is-compact-media .tagging-highlight-card__media {
  min-height: 220px;
  height: auto;
}

.tagging-highlight-card.is-compact-media .tagging-highlight-card__media img {
  display: block;
  width: min(62%, 145px) !important;
  height: auto !important;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  max-height: none;
  box-sizing: border-box;
  padding: 0.35rem;
}

.tagging-highlight-card__copy h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1rem;
  line-height: 1.3;
}

.tagging-highlight-card__copy p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.tagging-page-cta {
  padding: clamp(3.4rem, 6vw, 4.6rem) 0 0;
}

.tagging-page-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(244, 123, 32, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(11, 77, 134, 0.98) 0%, rgba(17, 104, 177, 0.94) 100%);
  box-shadow: 0 24px 54px rgba(20, 32, 51, 0.18);
}

.tagging-page-cta__inner h2 {
  margin: 0.2rem 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.tagging-page-cta__inner p:not(.eyebrow) {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.7;
}

.tagging-page-cta__inner .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.tagging-page-cta__actions {
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .slp-page-eas-tagging-solutions .page-main {
    padding-bottom: 3rem;
  }

  .tagging-page-hero {
    gap: 1.3rem;
    padding: 2.25rem 0 1.2rem;
  }

  .tagging-page-hero__copy {
    padding: 1.25rem 1.35rem 1.4rem;
  }

  .tagging-page-hero__copy h1 {
    font-size: clamp(1.9rem, 3.1vw, 2.95rem);
  }

  .tagging-page-hero__copy .lead {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .tagging-page-hero__copy p:not(.eyebrow):not(.lead) {
    font-size: 0.86rem;
    line-height: 1.54;
  }

  .tagging-page-hero__stats {
    gap: 0.7rem;
    padding: 1rem;
  }

  .tagging-stat-card {
    padding: 0.9rem 0.95rem;
  }

  .tagging-stat-card strong {
    font-size: 1.05rem;
  }

  .tagging-stat-card span {
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .tagging-page-nav {
    gap: 0.7rem;
    padding-bottom: 1.3rem;
  }

  .tagging-page-nav a {
    padding: 0.8rem 0.85rem 0.85rem;
  }

  .tagging-page-nav a strong {
    font-size: 0.82rem;
  }

  .tagging-page-nav a span {
    font-size: 0.74rem;
    line-height: 1.38;
  }

  .tagging-category {
    padding: 1.85rem 0;
  }

  .tagging-category__story {
    gap: 1.15rem;
  }

  .tagging-category__eyebrow {
    margin-bottom: 0.3rem;
    font-size: 0.68rem;
  }

  .tagging-category__copy h2 {
    font-size: clamp(1.18rem, 1.8vw, 1.72rem);
  }

  .tagging-category__description,
  .tagging-category__support {
    margin-top: 0.55rem;
    font-size: 0.83rem;
    line-height: 1.42;
  }

  .tagging-category__panel {
    margin-top: 0.75rem;
    padding: 0.8rem 0.9rem 0.85rem;
  }

  .tagging-category__panel h3 {
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
  }

  .tagging-application-list {
    gap: 0.35rem 0.65rem;
  }

  .tagging-application-list li {
    min-height: 18px;
    padding-left: 1rem;
    font-size: 0.74rem;
    line-height: 1.26;
  }

  .tagging-application-list li::before {
    top: 0.18rem;
    width: 0.56rem;
    height: 0.56rem;
  }

  .tagging-category__actions {
    margin-top: 0.7rem;
  }

  .tagging-mosaic {
    grid-template-rows: repeat(3, minmax(0, 114px));
    gap: 0.7rem;
  }

  .tagging-media-card {
    border-radius: 12px;
  }

  .tagging-media-card figcaption {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 0.35rem 0.45rem;
    font-size: 0.68rem;
    line-height: 1.28;
  }

  .tagging-highlight-grid {
    gap: 0.75rem;
  }

  .tagging-highlight-card {
    gap: 0.6rem;
    padding: 0.8rem;
  }

  .tagging-highlight-card__media {
    min-height: 90px;
  }

  .tagging-highlight-card__media img {
    padding: 0.6rem;
  }

  .tagging-highlight-card__copy h3 {
    font-size: 0.82rem;
  }

  .tagging-highlight-card__copy p {
    margin-top: 0.35rem;
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .tagging-page-cta {
    padding-top: 1.8rem;
  }

  .tagging-page-cta__inner {
    gap: 1rem;
    padding: 1.05rem 1.2rem 1.15rem;
  }

  .tagging-page-cta__inner h2 {
    font-size: clamp(1.14rem, 1.8vw, 1.55rem);
  }

  .tagging-page-cta__inner p:not(.eyebrow) {
    font-size: 0.8rem;
    line-height: 1.44;
  }
}

@media (max-width: 1080px) {
  .tagging-page-nav,
  .tagging-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .tagging-page-hero,
  .tagging-category__story,
  .tagging-category__story.is-reversed,
  .tagging-page-cta__inner {
    grid-template-columns: 1fr;
  }

  .tagging-category__story.is-reversed .tagging-category__copy,
  .tagging-category__story.is-reversed .tagging-category__media {
    order: initial;
  }
}

@media (max-width: 640px) {
  .slp-page-eas-tagging-solutions .page-main {
    padding-bottom: 3.5rem;
  }

  .tagging-page-hero {
    padding: 3rem 0 1.6rem;
  }

  .tagging-page-nav,
  .tagging-highlight-grid,
  .tagging-application-list {
    grid-template-columns: 1fr;
  }

  .tagging-page-nav {
    padding-bottom: 1.8rem;
  }

  .tagging-category {
    padding: 2.8rem 0;
  }

  .tagging-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .tagging-media-card,
  .tagging-media-card.is-primary,
  .tagging-media-card.is-tall {
    grid-row: auto;
    min-height: 240px;
  }

  .tagging-page-cta__actions {
    justify-content: flex-start;
  }
}

/* Dedicated theme-rendered Open Display Security page. */
.slp-page-open-display-security .page-main {
  padding: 0 0 5rem;
  background:
    linear-gradient(rgba(205, 214, 222, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 214, 222, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, #f4f7fa 0%, #eef3f8 100%);
  background-size: 28px 28px, 28px 28px, auto;
}

.open-display-template {
  max-width: none;
}

.open-display-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 2.8rem);
  align-items: stretch;
  padding: clamp(3.2rem, 7vw, 5rem) 0 2rem;
}

.open-display-hero__copy,
.open-display-hero__aside {
  min-width: 0;
}

.open-display-hero__copy {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  padding-right: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(11, 77, 134, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(10, 23, 38, 0.97) 0%, rgba(14, 41, 69, 0.95) 54%, rgba(20, 85, 128, 0.92) 100%);
  box-shadow: 0 26px 58px rgba(15, 28, 43, 0.2);
}

.open-display-hero__copy .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.open-display-hero__copy .eyebrow,
.open-display-hero__copy h1,
.open-display-hero__copy p {
  position: relative;
  z-index: 1;
}

.open-display-hero__copy h1 {
  margin: 0;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(2.25rem, 5.4vw, 4.5rem);
  line-height: 0.98;
}

.open-display-hero__copy .lead {
  margin: 1rem 0 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
  line-height: 1.72;
}

.open-display-hero__copy p:not(.eyebrow):not(.lead) {
  margin: 0.95rem 0 0;
  max-width: 54ch;
  color: rgba(233, 240, 246, 0.8);
  font-size: 0.98rem;
  line-height: 1.74;
}

.open-display-hero__aside {
  display: grid;
  gap: 1rem;
}

.open-display-hero__visual,
.open-display-hero__stats,
.open-display-hero__panel {
  padding: clamp(1.1rem, 2.6vw, 1.55rem);
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(15, 28, 43, 0.1);
}

.open-display-hero__visual {
  position: absolute;
  top: clamp(1rem, 2.2vw, 1.4rem);
  right: clamp(1rem, 2.2vw, 1.4rem);
  width: min(46%, 390px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(150px, 18vw, 220px);
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  z-index: 0;
}

.open-display-hero__visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(5, 12, 20, 0.3));
}

.open-display-hero__stats {
  display: grid;
  gap: 0.9rem;
}

.open-display-stat-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(11, 77, 134, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(247, 250, 253, 0.98) 0%, rgba(239, 245, 250, 0.98) 100%);
}

.open-display-stat-card strong {
  color: var(--blue-deep);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.open-display-stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.46;
}

.open-display-hero__panel h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.05rem;
  line-height: 1.3;
}

.open-display-bullet-list {
  display: grid;
  gap: 0.7rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.open-display-bullet-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.48;
}

.open-display-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 0.74rem;
  height: 0.74rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f7a24c 0%, #f47b20 100%);
  box-shadow: inset 0 0 0 2px #fff;
}

.open-display-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  padding-bottom: 2.3rem;
}

.open-display-nav a {
  display: grid;
  gap: 0.45rem;
  min-height: 100%;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(15, 28, 43, 0.08);
}

.open-display-nav a strong {
  color: var(--blue-deep);
  font-size: 0.94rem;
  line-height: 1.24;
}

.open-display-nav a span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.46;
}

.open-display-nav a:hover,
.open-display-nav a:focus-visible {
  border-color: rgba(244, 123, 32, 0.42);
  transform: translateY(-2px);
  outline: none;
}

.open-display-category {
  position: relative;
  padding: clamp(3.3rem, 7vw, 4.9rem) 0;
}

.open-display-category--mobile {
  background:
    linear-gradient(135deg, rgba(14, 41, 69, 0.05) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(244, 123, 32, 0.05) 100%);
}

.open-display-category--wearables {
  background:
    linear-gradient(180deg, rgba(252, 247, 241, 0.98) 0%, rgba(246, 240, 233, 0.98) 100%);
}

.open-display-category--audio {
  background:
    linear-gradient(135deg, rgba(11, 77, 134, 0.05) 0%, rgba(244, 248, 252, 0.98) 100%);
}

.open-display-category--laptop {
  background:
    linear-gradient(rgba(202, 211, 221, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 211, 221, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 248, 251, 0.98) 0%, rgba(238, 243, 247, 0.98) 100%);
  background-size: 24px 24px, 24px 24px, auto;
}

.open-display-category--studio {
  background:
    linear-gradient(180deg, rgba(250, 251, 252, 0.98) 0%, rgba(241, 246, 250, 0.98) 100%);
}

.open-display-category--controller {
  background:
    linear-gradient(135deg, rgba(10, 23, 38, 0.04) 0%, rgba(244, 248, 252, 0.98) 64%, rgba(244, 123, 32, 0.04) 100%);
}

.open-display-category__inner {
  display: grid;
  gap: 1.5rem;
}

.open-display-category__story {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(1.4rem, 4vw, 2.5rem);
  align-items: stretch;
}

.open-display-category__story.is-reversed .open-display-category__copy {
  order: 2;
}

.open-display-category__story.is-reversed .open-display-category__media {
  order: 1;
}

.open-display-category__copy,
.open-display-category__media {
  min-width: 0;
}

.open-display-category__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.open-display-category__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.open-display-category__copy h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1.78rem, 3vw, 2.78rem);
  line-height: 1.08;
}

.open-display-category__description,
.open-display-category__support {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.open-display-category__panel {
  margin-top: 1.15rem;
  padding: 1.15rem 1.15rem 1.2rem;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(15, 28, 43, 0.08);
}

.open-display-category__panel h3 {
  margin: 0 0 0.8rem;
  color: var(--blue-deep);
  font-size: 1rem;
}

.open-display-use-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.open-display-use-list li {
  position: relative;
  min-height: 28px;
  padding-left: 1.5rem;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.open-display-use-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(244, 123, 32, 0.45);
}

.open-display-category__actions {
  margin-top: 1.2rem;
}

.open-display-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(3, minmax(0, 148px));
  gap: 0.95rem;
  height: 100%;
}

.open-display-media-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 252, 0.96) 100%);
  box-shadow: 0 20px 46px rgba(15, 28, 43, 0.12);
}

.open-display-media-card.is-primary {
  grid-row: 1 / span 3;
}

.open-display-media-card.is-full {
  grid-column: 1 / -1;
  grid-row: 1 / span 3;
}

.open-display-media-card.is-card {
  border-radius: 14px 24px 14px 14px;
}

.open-display-media-card.is-tall-card {
  min-height: 176px;
}

.open-display-media-card.is-caption-below {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 220px;
  padding: 0.85rem 0.85rem 0.9rem;
}

.open-display-media-card.is-caption-below img {
  height: 100%;
  min-height: 130px;
  padding: 0.2rem 0.25rem 0;
}

.open-display-media-card.is-caption-below figcaption {
  position: static;
  margin-top: 0.65rem;
  padding: 0.5rem 0.65rem;
}

.open-display-media-card.is-large-product img {
  transform: scale(1.12);
  transform-origin: center center;
}

.open-display-media-card.is-wide {
  border-radius: 14px 14px 28px 14px;
}

.open-display-media-card.is-dark-panel {
  background:
    linear-gradient(135deg, rgba(16, 29, 45, 0.98) 0%, rgba(25, 46, 70, 0.96) 100%);
}

.open-display-media-card.is-light-panel {
  background:
    linear-gradient(180deg, rgba(250, 251, 253, 0.98) 0%, rgba(242, 246, 250, 0.98) 100%);
}

.open-display-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.open-display-media-card.is-contain img {
  object-fit: contain;
  padding: 0.9rem;
}

.open-display-media-card figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.34;
  box-shadow: 0 10px 24px rgba(15, 28, 43, 0.12);
}

.open-display-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.open-display-highlight-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(11, 77, 134, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(15, 28, 43, 0.08);
}

.open-display-highlight-card__media {
  display: grid;
  place-items: center;
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(247, 249, 251, 0.96) 0%, rgba(242, 246, 249, 0.96) 100%);
}

.open-display-highlight-card__media.is-compact-tall {
  min-height: 102px;
}

.open-display-highlight-card__media.is-compact-tall img {
  max-height: 178px;
  width: auto;
}

.open-display-highlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.85rem;
}

.open-display-highlight-card__code {
  margin: 0;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.open-display-highlight-card__copy h3 {
  margin: 0.22rem 0 0;
  color: var(--blue-deep);
  font-size: 1rem;
  line-height: 1.3;
}

.open-display-highlight-card__copy p:last-child {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.52;
}

.open-display-cta {
  padding: clamp(3.2rem, 6vw, 4.4rem) 0 0;
}

.open-display-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: clamp(1.45rem, 3vw, 2.1rem);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(10, 23, 38, 0.98) 0%, rgba(14, 41, 69, 0.96) 58%, rgba(244, 123, 32, 0.92) 100%);
  box-shadow: 0 24px 54px rgba(15, 28, 43, 0.18);
}

.open-display-cta__inner .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.open-display-cta__inner h2 {
  margin: 0.2rem 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.open-display-cta__inner p:not(.eyebrow) {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.68;
}

.open-display-cta__actions {
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .slp-page-open-display-security .page-main {
    padding-bottom: 3rem;
  }

  .open-display-hero {
    gap: 1.25rem;
    padding: 2.2rem 0 1.2rem;
  }

  .open-display-hero__copy {
    padding: 1.25rem 1.35rem 1.4rem;
    padding-right: 1.35rem;
  }

  .open-display-hero__copy h1 {
    font-size: clamp(1.9rem, 3vw, 2.9rem);
  }

  .open-display-hero__copy .lead {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .open-display-hero__copy p:not(.eyebrow):not(.lead) {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .open-display-hero__aside {
    gap: 0.8rem;
  }

  .open-display-hero__stats,
  .open-display-hero__panel {
    padding: 0.95rem;
  }

  .open-display-hero__visual {
    top: 0.95rem;
    right: 0.95rem;
    width: min(42%, 300px);
    min-height: 120px;
  }

  .open-display-hero__visual img {
    max-width: 100%;
  }

  .open-display-stat-card {
    padding: 0.88rem 0.95rem;
  }

  .open-display-stat-card strong {
    font-size: 1.02rem;
  }

  .open-display-stat-card span {
    font-size: 0.79rem;
    line-height: 1.36;
  }

  .open-display-hero__panel h2 {
    font-size: 0.88rem;
  }

  .open-display-bullet-list {
    gap: 0.45rem;
    margin-top: 0.7rem;
  }

  .open-display-bullet-list li {
    padding-left: 1.05rem;
    font-size: 0.76rem;
    line-height: 1.32;
  }

  .open-display-bullet-list li::before {
    top: 0.25rem;
    width: 0.56rem;
    height: 0.56rem;
  }

  .open-display-nav {
    gap: 0.7rem;
    padding-bottom: 1.25rem;
  }

  .open-display-nav a {
    padding: 0.8rem 0.85rem 0.85rem;
  }

  .open-display-nav a strong {
    font-size: 0.82rem;
  }

  .open-display-nav a span {
    font-size: 0.74rem;
    line-height: 1.36;
  }

  .open-display-category {
    padding: 1.85rem 0;
  }

  .open-display-category__story {
    gap: 1.1rem;
  }

  .open-display-category__eyebrow {
    margin-bottom: 0.3rem;
    font-size: 0.68rem;
  }

  .open-display-category__copy h2 {
    font-size: clamp(1.18rem, 1.8vw, 1.72rem);
  }

  .open-display-category__description,
  .open-display-category__support {
    margin-top: 0.55rem;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .open-display-category__panel {
    margin-top: 0.72rem;
    padding: 0.78rem 0.9rem 0.82rem;
  }

  .open-display-category__panel h3 {
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
  }

  .open-display-use-list {
    gap: 0.35rem 0.65rem;
  }

  .open-display-use-list li {
    min-height: 18px;
    padding-left: 1rem;
    font-size: 0.74rem;
    line-height: 1.26;
  }

  .open-display-use-list li::before {
    top: 0.18rem;
    width: 0.56rem;
    height: 0.56rem;
  }

  .open-display-category__actions {
    margin-top: 0.68rem;
  }

  .open-display-mosaic {
    grid-template-rows: repeat(3, minmax(0, 114px));
    gap: 0.7rem;
  }

  .open-display-media-card figcaption {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 0.35rem 0.45rem;
    font-size: 0.68rem;
    line-height: 1.28;
  }

  .open-display-highlight-grid {
    gap: 0.75rem;
  }

  .open-display-highlight-card {
    gap: 0.6rem;
    padding: 0.8rem;
  }

  .open-display-highlight-card__media {
    min-height: 96px;
  }

  .open-display-highlight-card__media img {
    padding: 0.6rem;
  }

  .open-display-highlight-card__code {
    font-size: 0.64rem;
  }

  .open-display-highlight-card__copy h3 {
    font-size: 0.82rem;
  }

  .open-display-highlight-card__copy p:last-child {
    margin-top: 0.35rem;
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .open-display-cta {
    padding-top: 1.8rem;
  }

  .open-display-cta__inner {
    gap: 1rem;
    padding: 1.05rem 1.2rem 1.15rem;
  }

  .open-display-cta__inner h2 {
    font-size: clamp(1.12rem, 1.8vw, 1.52rem);
  }

  .open-display-cta__inner p:not(.eyebrow) {
    font-size: 0.8rem;
    line-height: 1.44;
  }
}

@media (max-width: 1080px) {
  .open-display-nav,
  .open-display-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .open-display-hero,
  .open-display-category__story,
  .open-display-category__story.is-reversed,
  .open-display-cta__inner {
    grid-template-columns: 1fr;
  }

  .open-display-category__story.is-reversed .open-display-category__copy,
  .open-display-category__story.is-reversed .open-display-category__media {
    order: initial;
  }
}

@media (max-width: 640px) {
  .slp-page-open-display-security .page-main {
    padding-bottom: 3.5rem;
  }

  .open-display-hero {
    padding: 3rem 0 1.6rem;
  }

  .open-display-hero__copy {
    padding-right: 1.1rem;
  }

  .open-display-hero__copy .lead,
  .open-display-hero__copy p:not(.eyebrow):not(.lead) {
    max-width: none;
  }

  .open-display-hero__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 140px;
    margin: 0.65rem 0 0.75rem;
  }

  .open-display-nav,
  .open-display-highlight-grid,
  .open-display-use-list {
    grid-template-columns: 1fr;
  }

  .open-display-nav {
    padding-bottom: 1.8rem;
  }

  .open-display-category {
    padding: 2.8rem 0;
  }

  .open-display-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .open-display-media-card,
  .open-display-media-card.is-primary {
    grid-row: auto;
    min-height: 240px;
  }

  .open-display-cta__actions {
    justify-content: flex-start;
  }
}

.slp-page-footfall-customer-counting .page-main {
  padding-top: 0;
  padding-bottom: 5rem;
  background:
    radial-gradient(circle at top right, rgba(30, 90, 180, 0.14), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
}

.footfall-template {
  position: relative;
}

.footfall-page-hero {
  position: relative;
  overflow: hidden;
  padding: 3.6rem 0 1.45rem;
  background:
    linear-gradient(135deg, #06294b 0%, #0d4471 52%, #176398 100%);
  color: #ffffff;
}

.footfall-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.28;
  pointer-events: none;
}

.footfall-page-hero__inner,
.footfall-product__story,
.footfall-page-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 1.6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footfall-page-hero__copy {
  max-width: 760px;
}

.footfall-page-hero__brand {
  margin-bottom: 1rem;
}

.footfall-page-hero__brand img {
  width: auto;
  max-width: 230px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.55rem 0.8rem;
  box-shadow: 0 18px 38px rgba(4, 17, 34, 0.18);
}

.footfall-page-hero__copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 3vw, 3.45rem);
  line-height: 1.01;
  letter-spacing: 0;
  max-width: 15ch;
}

.footfall-page-hero__copy .lead {
  margin: 1rem 0 0;
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.62;
}

.footfall-page-hero__copy p:not(.eyebrow):not(.lead) {
  margin: 0.85rem 0 0;
  max-width: 68ch;
  color: rgba(236, 245, 255, 0.9);
  line-height: 1.64;
  font-size: 0.96rem;
}

.footfall-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.footfall-page-hero__actions .button--secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footfall-page-hero__actions .button--secondary:hover,
.footfall-page-hero__actions .button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.footfall-page-hero__visual {
  position: relative;
  min-height: 360px;
}

.footfall-page-hero__dashboard {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(6, 17, 32, 0.24);
}

.footfall-page-hero__dashboard {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: min(100%, 700px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.footfall-page-hero__dashboard img {
  display: block;
  width: 100%;
}

.footfall-page-hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.15rem;
}

.footfall-stat-card {
  min-height: 100%;
  padding: 1.1rem 1.2rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(6, 17, 32, 0.12);
}

.footfall-stat-card strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
}

.footfall-stat-card span {
  display: block;
  margin-top: 0.48rem;
  color: rgba(234, 243, 252, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footfall-page-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.7rem;
}

.footfall-page-nav__card {
  min-height: 100%;
  padding: 1.15rem 1.2rem 1.18rem;
  border: 1px solid rgba(15, 58, 102, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(10, 36, 68, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.footfall-page-nav__card:hover,
.footfall-page-nav__card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(21, 97, 151, 0.22);
  box-shadow: 0 22px 50px rgba(10, 36, 68, 0.12);
}

.footfall-page-nav__card.is-active {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  border-color: rgba(23, 99, 152, 0.24);
}

.footfall-page-nav__eyebrow {
  margin: 0 0 0.48rem;
  color: #f87b20;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footfall-page-nav__card strong {
  display: block;
  color: #072645;
  font-size: 1.05rem;
}

.footfall-page-nav__card span {
  display: block;
  margin-top: 0.44rem;
  color: #46617e;
  font-size: 0.92rem;
  line-height: 1.55;
}

.footfall-page-nav__card small {
  display: inline-flex;
  margin-top: 0.85rem;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  background: rgba(248, 123, 32, 0.12);
  color: #ca5b05;
  font-size: 0.73rem;
  font-weight: 700;
}

.footfall-product {
  padding: 4.2rem 0 1.5rem;
}

.footfall-product__story {
  align-items: stretch;
}

.footfall-product__copy h2 {
  margin: 0;
  color: #0a3056;
  font-size: clamp(1.6rem, 2.15vw, 2.35rem);
  line-height: 1.08;
  max-width: 18ch;
}

.footfall-product__description,
.footfall-product__support {
  margin: 1rem 0 0;
  color: #47637d;
  line-height: 1.72;
}

.footfall-product__panel,
.footfall-panel,
.footfall-roadmap-card,
.footfall-page-cta__inner {
  border: 1px solid rgba(16, 60, 103, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 58px rgba(9, 38, 71, 0.09);
}

.footfall-product__panel {
  margin-top: 1.25rem;
  padding: 1.2rem 1.25rem 1.28rem;
}

.footfall-product__panel h3,
.footfall-panel h3 {
  margin: 0;
  color: #0a3056;
  font-size: 1.16rem;
}

.footfall-product__list,
.footfall-feature-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
}

.footfall-product__list li,
.footfall-feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #35506a;
  line-height: 1.56;
}

.footfall-product__list li + li,
.footfall-feature-list li + li {
  margin-top: 0.5rem;
}

.footfall-product__list li::before,
.footfall-feature-list li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #f87b20;
  box-shadow: 0 0 0 3px rgba(248, 123, 32, 0.16);
}

.footfall-product__actions {
  margin-top: 1.3rem;
}

.footfall-product__media {
  min-width: 0;
}

.footfall-pro2-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.footfall-media-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  border: 1px solid rgba(18, 65, 111, 0.08);
  box-shadow: 0 20px 50px rgba(9, 38, 71, 0.08);
}

.footfall-media-card.is-primary {
  min-height: 280px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
}

.footfall-media-card.is-comparison {
  min-height: 220px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fc 100%);
}

.footfall-media-card.is-primary img,
.footfall-media-card.is-comparison img {
  object-fit: contain;
  padding: 1rem;
}

.footfall-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footfall-media-card figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.56rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: #0b335d;
  font-size: 0.86rem;
  line-height: 1.42;
  box-shadow: 0 12px 30px rgba(9, 38, 71, 0.12);
}

.footfall-insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
  margin-top: 1.35rem;
}

.footfall-panel {
  padding: 1.35rem 1.4rem 1.45rem;
}

.footfall-panel--features {
  grid-column: span 2;
}

.footfall-panel__feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 1rem;
  align-items: center;
}

.footfall-panel__visual {
  margin: 0;
  min-height: 210px;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  border: 1px solid rgba(18, 65, 111, 0.07);
}

.footfall-panel__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footfall-panel__header p {
  margin: 0.55rem 0 0;
  color: #52708c;
  line-height: 1.62;
}

.footfall-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.footfall-metric-card {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  border: 1px solid rgba(18, 65, 111, 0.07);
}

.footfall-metric-card strong {
  display: block;
  color: #0b335d;
  font-size: 0.96rem;
}

.footfall-metric-card span {
  display: block;
  margin-top: 0.38rem;
  color: #4f6b86;
  font-size: 0.86rem;
  line-height: 1.48;
}

.footfall-coverage-table {
  display: grid;
  gap: 0.44rem;
  margin-top: 1rem;
}

.footfall-coverage-table__row {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.78rem 0.95rem;
  border-radius: 14px;
  background: #f7fbff;
  color: #35506a;
}

.footfall-coverage-table__row.is-head {
  background: linear-gradient(135deg, #0b335d 0%, #165f93 100%);
  color: #ffffff;
  font-weight: 700;
}

.footfall-platform {
  padding: 2.25rem 0 0;
}

.footfall-platform__inner {
  display: grid;
  gap: 1.15rem;
}

.footfall-platform__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 1rem;
  align-items: stretch;
}

.footfall-platform__intro-copy,
.footfall-platform__intro-visual,
.footfall-platform-card {
  border-radius: 24px;
  border: 1px solid rgba(18, 65, 111, 0.08);
  box-shadow: 0 22px 55px rgba(9, 38, 71, 0.08);
}

.footfall-platform__intro-copy {
  padding: 1.5rem 1.55rem 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(77, 167, 255, 0.18), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.footfall-platform__intro-copy h2 {
  margin: 0.32rem 0 0;
  color: #0a3056;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.1;
  max-width: 19ch;
}

.footfall-platform__intro-copy p:not(.footfall-product__eyebrow) {
  color: #52708c;
}

.footfall-platform__intro-visual {
  margin: 0;
  min-height: 310px;
  padding: 1.35rem;
  background:
    linear-gradient(140deg, rgba(7, 52, 96, 0.98) 0%, rgba(17, 88, 154, 0.92) 100%);
}

.footfall-platform__intro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footfall-platform__grid {
  display: grid;
  gap: 1rem;
}

.footfall-platform-card {
  padding: 1.35rem 1.4rem 1.45rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.footfall-platform-card--reporting {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: center;
}

.footfall-platform-card__copy h3 {
  margin: 0.2rem 0 0;
  color: #0a3056;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.footfall-platform-card__copy p:not(.eyebrow) {
  margin: 0.75rem 0 0;
  color: #52708c;
  line-height: 1.68;
}

.footfall-platform-card__visual {
  min-width: 0;
}

.footfall-platform-card__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.footfall-platform-card__meta-grid {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.45rem;
}

.footfall-platform-card__meta {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #f9fbff 0%, #eef6ff 100%);
  border: 1px solid rgba(18, 65, 111, 0.07);
}

.footfall-platform-card__meta h4 {
  margin: 0;
  color: #0b335d;
  font-size: 1rem;
}

.footfall-platform-card__meta ul {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.footfall-platform-card__meta li {
  position: relative;
  padding-left: 1rem;
  color: #4f6b86;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footfall-platform-card__meta li + li {
  margin-top: 0.45rem;
}

.footfall-platform-card__meta li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #f87b20;
  box-shadow: 0 0 0 3px rgba(248, 123, 32, 0.14);
}

.footfall-platform-card--trend {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.footfall-platform-card--trend .footfall-platform-card__visual {
  padding: 0.4rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fd 100%);
  border: 1px solid rgba(18, 65, 111, 0.06);
}

.footfall-platform-card--kpi {
  background:
    radial-gradient(circle at top right, rgba(71, 144, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #0b335d 0%, #165f93 100%);
  color: #ffffff;
}

.footfall-platform-card--kpi .footfall-platform-card__copy h3,
.footfall-platform-card--kpi .eyebrow {
  color: #ffffff;
}

.footfall-platform-card--kpi .footfall-platform-card__copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.footfall-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.footfall-kpi-chip {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.footfall-kpi-chip strong {
  display: block;
  font-size: 0.98rem;
}

.footfall-kpi-chip span {
  display: block;
  margin-top: 0.38rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footfall-platform-card--overview {
  padding-bottom: 1.2rem;
}

.footfall-platform-card__overview-visual {
  margin: 1rem 0 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(18, 65, 111, 0.07);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fd 100%);
}

.footfall-platform-card__overview-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.footfall-centroid {
  padding: 2.25rem 0 0;
}

.footfall-centroid__inner {
  display: grid;
  gap: 1.05rem;
}

.footfall-centroid__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
  align-items: stretch;
}

.footfall-centroid__copy,
.footfall-centroid__intro-visual,
.footfall-centroid__summary,
.footfall-centroid-card {
  border-radius: 24px;
  border: 1px solid rgba(18, 65, 111, 0.08);
  box-shadow: 0 24px 60px rgba(9, 38, 71, 0.1);
}

.footfall-centroid__copy {
  padding: 1.45rem 1.5rem 1.55rem;
  background:
    radial-gradient(circle at top left, rgba(14, 198, 175, 0.14), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.footfall-centroid__copy h2 {
  margin: 0.34rem 0 0;
  color: #0a3056;
  font-size: clamp(1.75rem, 2.35vw, 2.55rem);
  line-height: 1.1;
  max-width: 15ch;
}

.footfall-centroid__intro-visual {
  margin: 0;
  min-height: 420px;
  padding: 1rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(27, 214, 176, 0.22), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(255, 205, 0, 0.18), transparent 24%),
    linear-gradient(135deg, #071f3a 0%, #12456f 52%, #0c3156 100%);
}

.footfall-centroid__intro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footfall-product__panel--dark {
  background: linear-gradient(135deg, #0a3056 0%, #12456f 100%);
}

.footfall-product__panel--dark h3,
.footfall-product__panel--dark li {
  color: #ffffff;
}

.footfall-product__panel--dark .footfall-product__list li::before {
  background: #3be0c4;
  box-shadow: 0 0 0 3px rgba(59, 224, 196, 0.18);
}

.footfall-centroid__summary {
  padding: 1.3rem 1.45rem 1.35rem;
  background:
    linear-gradient(90deg, rgba(9, 49, 86, 0.97) 0%, rgba(13, 87, 140, 0.96) 100%);
  color: #ffffff;
}

.footfall-centroid__summary .eyebrow,
.footfall-centroid__summary h3 {
  color: #ffffff;
}

.footfall-centroid__summary h3 {
  margin: 0.28rem 0 0;
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
}

.footfall-centroid__summary p:not(.eyebrow) {
  margin: 0.72rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.footfall-centroid__feature-grid {
  display: grid;
  gap: 1rem;
}

.footfall-centroid-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.footfall-centroid-card--setup {
  background:
    radial-gradient(circle at top right, rgba(66, 160, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.footfall-centroid-card__visual {
  margin: 0;
  min-height: 280px;
  padding: 0.8rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fd 100%);
  border: 1px solid rgba(18, 65, 111, 0.07);
}

.footfall-centroid-card__visual--setup {
  min-height: 250px;
}

.footfall-centroid-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footfall-centroid-card__copy h3 {
  margin: 0.24rem 0 0;
  color: #0a3056;
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
}

.footfall-centroid-card__copy p:not(.eyebrow) {
  margin: 0.72rem 0 0;
  color: #52708c;
  line-height: 1.72;
}

.footfall-coming-soon {
  padding: 2.2rem 0 0;
}

.footfall-coming-soon__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.footfall-coming-soon__inner--single {
  grid-template-columns: 1fr;
}

.footfall-roadmap-card {
  padding: 1.3rem 1.35rem 1.4rem;
}

.footfall-roadmap-card__eyebrow {
  margin: 0 0 0.4rem;
  color: #f87b20;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footfall-roadmap-card h3 {
  margin: 0;
  color: #0a3056;
}

.footfall-roadmap-card p:not(.footfall-roadmap-card__eyebrow) {
  margin: 0.65rem 0 0;
  color: #52708c;
  line-height: 1.64;
}

.footfall-page-cta {
  padding-top: 2rem;
}

.footfall-page-cta__inner {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  padding: 1.5rem 1.6rem;
}

.footfall-page-cta__inner h2 {
  margin: 0.2rem 0 0;
  color: #0a3056;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.footfall-page-cta__inner p:not(.eyebrow) {
  margin: 0.75rem 0 0;
  color: #52708c;
  line-height: 1.64;
}

.footfall-page-cta__actions {
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .footfall-page-hero__inner,
  .footfall-product__story,
  .footfall-insight-grid,
  .footfall-page-cta__inner {
    grid-template-columns: 1fr;
  }

  .footfall-page-hero__visual {
    min-height: 330px;
  }

  .footfall-page-hero__stats,
  .footfall-page-nav,
  .footfall-metric-grid,
  .footfall-coming-soon__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footfall-platform__intro,
  .footfall-centroid__intro,
  .footfall-platform-card--reporting,
  .footfall-platform-card--trend,
  .footfall-centroid-card {
    grid-template-columns: 1fr;
  }

  .footfall-platform-card__meta-grid,
  .footfall-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footfall-platform-card__meta-grid {
    grid-column: auto;
  }

  .footfall-panel--features {
    grid-column: auto;
  }

  .footfall-panel__feature-layout {
    grid-template-columns: 1fr;
  }

  .footfall-page-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .footfall-page-hero {
    padding: 3.4rem 0 1.4rem;
  }

  .footfall-page-hero__copy h1 {
    font-size: 2.6rem;
  }

  .footfall-page-hero__visual {
    min-height: 240px;
  }

  .footfall-page-hero__stats,
  .footfall-page-nav,
  .footfall-metric-grid,
  .footfall-coming-soon__inner,
  .footfall-pro2-mosaic {
    grid-template-columns: 1fr;
  }

  .footfall-platform {
    padding-top: 1.7rem;
  }

  .footfall-centroid {
    padding-top: 1.7rem;
  }

  .footfall-platform__intro-visual {
    min-height: 230px;
  }

  .footfall-centroid__intro-visual {
    min-height: 260px;
  }

  .footfall-platform-card__meta-grid,
  .footfall-kpi-grid {
    grid-template-columns: 1fr;
  }

  .footfall-media-card.is-primary {
    min-height: 220px;
  }

  .footfall-media-card.is-comparison {
    min-height: 190px;
  }

  .footfall-coverage-table__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    font-size: 0.82rem;
  }

  .footfall-page-cta__inner {
    padding: 1.25rem;
  }
}

.slp-page-cctv .page-main {
  padding-top: 0;
  padding-bottom: 5rem;
  background:
    radial-gradient(circle at top left, rgba(24, 99, 152, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbfe 0%, #eef4f9 100%);
}

.cctv-template {
  position: relative;
  color: #10324f;
}

.cctv-section,
.cctv-page-cta {
  position: relative;
  overflow: hidden;
}

.cctv-hero {
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 2.4rem;
  background:
    linear-gradient(rgba(5, 21, 38, 0.7), rgba(5, 21, 38, 0.8)),
    radial-gradient(circle at right center, rgba(55, 132, 205, 0.38), transparent 28%),
    linear-gradient(135deg, #061a2c 0%, #0a3158 48%, #124f7c 100%);
  color: #ffffff;
}

.cctv-hero::before,
.cctv-page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cctv-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
}

.cctv-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 28%, rgba(112, 199, 255, 0.16), transparent 11%),
    radial-gradient(circle at 74% 62%, rgba(112, 199, 255, 0.14), transparent 9%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%);
  pointer-events: none;
}

.cctv-hero__inner,
.cctv-two-column,
.cctv-analytics,
.cctv-page-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 2rem;
  align-items: center;
}

.cctv-hero__copy h1 {
  margin: 0;
  max-width: 11ch;
  color: #ffffff;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.01;
}

.cctv-hero__copy .lead {
  margin: 1.2rem 0 0;
  max-width: 65ch;
  color: rgba(240, 247, 255, 0.94);
  font-size: 1.02rem;
  line-height: 1.7;
}

.cctv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.cctv-hero__feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.7rem;
}

.cctv-mini-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 54px rgba(4, 15, 29, 0.15);
}

.cctv-mini-feature__icon,
.cctv-benefit-card__check,
.cctv-check-list li::before,
.cctv-analytics__list li::before {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 123, 32, 0.18);
  box-shadow: inset 0 0 0 1px rgba(248, 123, 32, 0.34);
}

.cctv-mini-feature__icon::before,
.cctv-benefit-card__check::before,
.cctv-check-list li::before,
.cctv-analytics__list li::before {
  content: "";
  width: 0.38rem;
  height: 0.7rem;
  border-right: 2px solid #f87b20;
  border-bottom: 2px solid #f87b20;
  transform: rotate(40deg) translate(-1px, -1px);
}

.cctv-mini-feature strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
}

.cctv-mini-feature p {
  margin: 0.32rem 0 0;
  color: rgba(231, 242, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cctv-hero__visual {
  min-height: 560px;
}

.cctv-camera-stage {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 560px;
  padding: clamp(1rem, 2vw, 1.6rem);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 78px rgba(3, 11, 22, 0.24);
  backdrop-filter: blur(16px);
}

.cctv-camera-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 28%, rgba(109, 202, 255, 0.2), transparent 10%),
    radial-gradient(circle at 72% 44%, rgba(109, 202, 255, 0.14), transparent 15%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22));
}

.cctv-camera-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.cctv-camera {
  position: absolute;
  right: 5%;
  top: 14%;
  width: min(100%, 520px);
  height: 390px;
}

.cctv-camera__mount {
  position: absolute;
  top: 45%;
  right: 4%;
  width: 116px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d6e4ef, #87a0b8);
  transform: rotate(-28deg);
  box-shadow: 0 18px 34px rgba(3, 13, 26, 0.22);
}

.cctv-camera__body {
  position: absolute;
  left: 2%;
  top: 15%;
  width: 390px;
  height: 186px;
  border-radius: 34px 40px 44px 34px;
  background:
    linear-gradient(135deg, #ffffff 0%, #dfe9f2 54%, #9fb5c9 100%);
  box-shadow:
    0 30px 70px rgba(4, 16, 32, 0.26),
    inset 0 -18px 28px rgba(32, 72, 112, 0.14);
  transform: rotate(-10deg);
}

.cctv-camera__body::before {
  content: "";
  position: absolute;
  inset: 18px 22px 26px auto;
  width: 82px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.08));
}

.cctv-camera__body::after {
  content: "";
  position: absolute;
  left: -38px;
  top: 58px;
  width: 76px;
  height: 42px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(180deg, #dbe7f1, #8ca2b7);
  box-shadow: inset -8px 0 14px rgba(42, 74, 105, 0.15);
}

.cctv-camera__lens {
  position: absolute;
  border-radius: 999px;
}

.cctv-camera__lens--main {
  left: 42px;
  top: 44px;
  width: 98px;
  height: 98px;
  background:
    radial-gradient(circle at 42% 38%, rgba(89, 211, 255, 0.92), rgba(18, 46, 85, 0.9) 24%, #060b12 62%, #2d4b68 100%);
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.82),
    0 0 0 18px rgba(255, 255, 255, 0.2);
}

.cctv-camera__lens--accent {
  left: 168px;
  top: 56px;
  width: 64px;
  height: 64px;
  background:
    radial-gradient(circle at 40% 35%, rgba(89, 211, 255, 0.96), rgba(20, 55, 99, 0.92) 22%, #071016 62%, #264665 100%);
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.82),
    0 0 0 12px rgba(255, 255, 255, 0.16);
}

.cctv-camera__glow {
  position: absolute;
  left: 252px;
  top: 75px;
  width: 78px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(69, 200, 255, 0), rgba(69, 200, 255, 1), rgba(69, 200, 255, 0));
  filter: blur(1px);
  box-shadow: 0 0 24px rgba(69, 200, 255, 0.72);
}

.cctv-hud {
  position: absolute;
  pointer-events: none;
}

.cctv-hud--ring,
.cctv-hud--ring-secondary {
  border-radius: 999px;
  border: 1px solid rgba(109, 202, 255, 0.22);
}

.cctv-hud--ring {
  width: 280px;
  height: 280px;
  right: 5%;
  top: 15%;
}

.cctv-hud--ring-secondary {
  width: 180px;
  height: 180px;
  right: 13%;
  top: 24%;
}

.cctv-hud--scan {
  right: 11%;
  top: 24%;
  width: 210px;
  height: 2px;
  background: linear-gradient(90deg, rgba(109, 202, 255, 0), rgba(109, 202, 255, 0.95), rgba(109, 202, 255, 0));
  box-shadow: 0 0 18px rgba(109, 202, 255, 0.54);
}

.cctv-hud--box {
  border: 1px solid rgba(109, 202, 255, 0.34);
  border-radius: 12px;
}

.cctv-hud--box-a {
  width: 72px;
  height: 54px;
  right: 35%;
  top: 26%;
}

.cctv-hud--box-b {
  width: 102px;
  height: 82px;
  right: 16%;
  top: 47%;
}

.cctv-hud--line {
  height: 1px;
  background: linear-gradient(90deg, rgba(109, 202, 255, 0), rgba(109, 202, 255, 0.65));
}

.cctv-hud--line-a {
  width: 150px;
  right: 27%;
  top: 39%;
  transform: rotate(-22deg);
}

.cctv-hud--line-b {
  width: 180px;
  right: 10%;
  top: 61%;
  transform: rotate(16deg);
}

.cctv-section {
  padding: 4.6rem 0;
}

.cctv-section--light {
  background: transparent;
}

.cctv-section--white {
  background: #ffffff;
}

.cctv-section--tint {
  background: #f7f8fa;
}

.cctv-section--dark {
  background:
    radial-gradient(circle at 82% 22%, rgba(44, 130, 205, 0.16), transparent 18%),
    linear-gradient(135deg, #071b30 0%, #0a2d4e 100%);
  color: #ffffff;
}

.cctv-copy-panel,
.cctv-solution-card,
.cctv-process-step,
.cctv-icon-card,
.cctv-benefit-card,
.cctv-page-cta__inner {
  border: 1px solid rgba(15, 58, 102, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 58px rgba(9, 38, 71, 0.09);
}

.cctv-copy-panel {
  padding: 2rem;
}

.cctv-copy-panel h2,
.cctv-section-heading h2,
.cctv-analytics__copy h2,
.cctv-page-cta__copy h2 {
  margin: 0;
  color: #0a3056;
  font-size: clamp(1.75rem, 2.35vw, 2.65rem);
  line-height: 1.08;
}

.cctv-analytics__copy h2,
.cctv-page-cta__copy h2 {
  color: #ffffff;
}

.cctv-copy-panel > p:last-of-type,
.cctv-copy-panel > p {
  color: #496681;
  line-height: 1.74;
}

.cctv-check-list,
.cctv-analytics__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.cctv-check-list li,
.cctv-analytics__list li {
  position: relative;
  padding-left: 2rem;
  color: #244562;
  line-height: 1.65;
}

.cctv-analytics__list li {
  color: rgba(236, 244, 255, 0.94);
}

.cctv-check-list li::before,
.cctv-analytics__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
}

.cctv-collage {
  position: relative;
  min-height: 520px;
}

.cctv-device-card {
  position: absolute;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 252, 0.9));
  border: 1px solid rgba(16, 60, 103, 0.08);
  box-shadow: 0 26px 60px rgba(10, 36, 68, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
  padding: 1rem;
}

.cctv-device-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 72px rgba(10, 36, 68, 0.16);
}

.cctv-device-card::before,
.cctv-device-card::after {
  content: none;
}

.cctv-device-card__media {
  display: grid;
  place-items: center;
  min-height: 0;
}

.cctv-device-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.cctv-device-card__label {
  position: static;
  display: inline-flex;
  justify-self: start;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(7, 34, 61, 0.06);
  color: #0a3056;
  font-size: 0.82rem;
  font-weight: 700;
}

.cctv-device-card--bullet {
  left: 0;
  top: 5%;
  width: 48%;
  height: 220px;
}

.cctv-device-card--bullet::before {
  left: 16%;
  top: 50%;
  width: 170px;
  height: 62px;
  border-radius: 999px 24px 24px 999px;
  background: linear-gradient(135deg, #f6fbff 0%, #d5e3ef 52%, #91a8bc 100%);
  transform: translateY(-50%);
  box-shadow: inset 0 -8px 14px rgba(34, 72, 108, 0.14);
}

.cctv-device-card--bullet::after {
  left: 31%;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 35%, rgba(89, 211, 255, 0.96), rgba(21, 52, 93, 0.92) 24%, #081219 68%);
  transform: translateY(-50%);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.52);
}

.cctv-device-card--dome {
  right: 0;
  top: 0;
  width: 36%;
  height: 182px;
}

.cctv-device-card--dome::before {
  left: 50%;
  top: 46%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.94), #dbe6ef 38%, #9cb0c2 76%, #6d8092 100%);
  transform: translate(-50%, -50%);
  box-shadow: inset 0 -16px 24px rgba(32, 72, 112, 0.16);
}

.cctv-device-card--dome::after {
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 40% 35%, rgba(89, 211, 255, 0.96), rgba(22, 53, 93, 0.92) 24%, #081118 68%);
  transform: translate(-50%, -50%);
}

.cctv-device-card--ptz {
  left: 8%;
  bottom: 0;
  width: 34%;
  height: 198px;
}

.cctv-device-card--ptz::before {
  left: 50%;
  top: 46%;
  width: 124px;
  height: 94px;
  border-radius: 36px;
  background: linear-gradient(180deg, #ffffff 0%, #d9e4ee 70%, #9ab0c3 100%);
  transform: translate(-50%, -50%);
  box-shadow: inset 0 -10px 18px rgba(31, 68, 102, 0.14);
}

.cctv-device-card--ptz::after {
  left: 50%;
  top: 48%;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 40% 35%, rgba(89, 211, 255, 0.96), rgba(23, 53, 94, 0.92) 24%, #081118 68%);
  transform: translate(-50%, -50%);
  box-shadow: -32px 3px 0 -8px rgba(255, 255, 255, 0.76), 32px 3px 0 -8px rgba(255, 255, 255, 0.76);
}

.cctv-device-card--nvr {
  right: 2%;
  bottom: 6%;
  width: 48%;
  height: 188px;
}

.cctv-device-card--nvr::before {
  left: 50%;
  top: 45%;
  width: 198px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0c1620 0%, #1c2d3e 100%);
  transform: translate(-50%, -50%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cctv-device-card--nvr::after {
  left: 50%;
  top: 45%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #4fc3ff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(79, 195, 255, 0.82);
}

.cctv-section-heading {
  max-width: 760px;
  margin-bottom: 1.7rem;
}

.cctv-solution-grid,
.cctv-icon-grid,
.cctv-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

.cctv-solution-card,
.cctv-icon-card,
.cctv-benefit-card {
  min-height: 100%;
  padding: 1.35rem 1.35rem 1.4rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cctv-solution-card:hover,
.cctv-icon-card:hover,
.cctv-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 64px rgba(10, 36, 68, 0.14);
}

.cctv-solution-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a3158, #1970ad);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 38px rgba(19, 83, 136, 0.2);
}

.cctv-solution-card h3,
.cctv-icon-card h3,
.cctv-benefit-card h3,
.cctv-process-step__body h3 {
  margin: 1rem 0 0;
  color: #0a3056;
  font-size: 1.08rem;
}

.cctv-solution-card p {
  margin: 0.55rem 0 0;
  color: #496681;
  line-height: 1.66;
}

.cctv-process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.cctv-process-step {
  position: relative;
  min-height: 100%;
  padding: 1.25rem 1.2rem 1.25rem 4.15rem;
}

.cctv-process-step::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 2rem;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(248, 123, 32, 0.95), rgba(248, 123, 32, 0));
}

.cctv-process-step__count {
  position: absolute;
  left: 1.2rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f87b20, #ffb24b);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(248, 123, 32, 0.25);
}

.cctv-process-step__body h3 {
  margin-top: 0.15rem;
}

.cctv-analytics__copy > p:not(.eyebrow) {
  color: rgba(233, 242, 252, 0.9);
  line-height: 1.74;
}

.cctv-dashboard {
  overflow: hidden;
  padding: 1.15rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(11, 28, 48, 0.96), rgba(7, 18, 32, 0.96));
  border: 1px solid rgba(111, 190, 255, 0.14);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.cctv-dashboard img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
}

.cctv-dashboard__topbar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.cctv-dashboard__topbar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.cctv-dashboard__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
}

.cctv-dashboard__tile {
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cctv-dashboard__tile strong {
  display: block;
  color: #ffffff;
  font-size: 0.92rem;
}

.cctv-dashboard__tile span,
.cctv-dashboard__tile em {
  color: rgba(224, 236, 248, 0.86);
}

.cctv-dashboard__tile em {
  display: block;
  margin-top: 0.45rem;
  color: #74d0ff;
  font-style: normal;
  font-size: 1.65rem;
  font-weight: 800;
}

.cctv-dashboard__tile--heatmap {
  min-height: 188px;
}

.cctv-dashboard__heatmap {
  width: 100%;
  height: 100%;
  min-height: 168px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 117, 117, 0.9), transparent 12%),
    radial-gradient(circle at 46% 62%, rgba(255, 214, 92, 0.88), transparent 13%),
    radial-gradient(circle at 78% 34%, rgba(114, 214, 255, 0.82), transparent 12%),
    radial-gradient(circle at 66% 78%, rgba(95, 230, 165, 0.75), transparent 15%),
    linear-gradient(180deg, #102238, #0a1828);
}

.cctv-dashboard__tile--queue,
.cctv-dashboard__tile--thumbs,
.cctv-dashboard__tile--chart {
  min-height: 150px;
}

.cctv-dashboard__bars {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 92px;
  margin-top: 1rem;
}

.cctv-dashboard__bars span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #3ec8ff, #1e6fd1);
}

.cctv-dashboard__bars span:nth-child(1) { height: 42%; }
.cctv-dashboard__bars span:nth-child(2) { height: 68%; }
.cctv-dashboard__bars span:nth-child(3) { height: 56%; }
.cctv-dashboard__bars span:nth-child(4) { height: 84%; }
.cctv-dashboard__bars span:nth-child(5) { height: 62%; }
.cctv-dashboard__bars span:nth-child(6) { height: 74%; }

.cctv-dashboard__tile--thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.cctv-dashboard__thumb {
  min-height: 82px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 32% 42%, rgba(58, 197, 255, 0.36), transparent 18%),
    linear-gradient(180deg, #102238, #091420);
}

.cctv-dashboard__line-chart {
  position: relative;
  height: 94px;
  margin-top: 1rem;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cctv-dashboard__line-chart span {
  position: absolute;
  inset: 0;
}

.cctv-dashboard__line-chart span::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, #40caff, #69f0ae, #ffc64f);
  transform: translateY(-50%) rotate(-6deg);
  box-shadow: 0 0 20px rgba(64, 202, 255, 0.38);
}

.cctv-icon-card {
  text-align: center;
}

.cctv-icon-card__glyph {
  display: inline-flex;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff6fb, #dceaf6);
  border: 1px solid rgba(15, 58, 102, 0.09);
  position: relative;
}

.cctv-icon-card__glyph::before,
.cctv-icon-card__glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #176398;
}

.cctv-icon-card__glyph::before {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.28rem;
}

.cctv-icon-card__glyph::after {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  box-shadow: -0.7rem 0 0 #176398, 0.7rem 0 0 #176398;
}

.cctv-icon-card h3 {
  margin-top: 0.9rem;
  font-size: 1rem;
}

.cctv-benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.cctv-benefit-card__check {
  position: relative;
  margin-top: 0.1rem;
}

.cctv-benefit-card h3 {
  margin: 0;
}

.cctv-page-cta {
  padding: 4.3rem 0;
  background: linear-gradient(135deg, #0a3158 0%, #156397 100%);
}

.cctv-page-cta::before {
  background:
    radial-gradient(circle at 18% 38%, rgba(255, 255, 255, 0.1), transparent 12%),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.08), transparent 14%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  opacity: 0.28;
}

.cctv-page-cta__inner {
  gap: 1.4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(5, 18, 36, 0.18);
}

.cctv-page-cta__copy p:not(.eyebrow) {
  color: rgba(235, 244, 255, 0.92);
  line-height: 1.72;
}

.cctv-page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.cctv-page-cta__actions .button--secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.cctv-page-cta__actions .button--secondary:hover,
.cctv-page-cta__actions .button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1180px) {
  .cctv-solution-grid,
  .cctv-process-timeline,
  .cctv-icon-grid,
  .cctv-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cctv-hero__inner,
  .cctv-two-column,
  .cctv-analytics,
  .cctv-page-cta__inner {
    grid-template-columns: 1fr;
  }

  .cctv-hero__visual {
    min-height: 480px;
  }

  .cctv-camera-stage {
    min-height: 480px;
  }

  .cctv-dashboard__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .cctv-hero {
    padding-top: 3.7rem;
  }

  .cctv-hero__feature-grid,
  .cctv-solution-grid,
  .cctv-process-timeline,
  .cctv-icon-grid,
  .cctv-benefit-grid {
    grid-template-columns: 1fr;
  }

  .cctv-collage {
    min-height: 700px;
  }

  .cctv-device-card--bullet,
  .cctv-device-card--dome,
  .cctv-device-card--ptz,
  .cctv-device-card--nvr {
    width: 100%;
    left: 0;
    right: 0;
  }

  .cctv-device-card--bullet {
    top: 0;
  }

  .cctv-device-card--dome {
    top: 180px;
  }

  .cctv-device-card--ptz {
    top: 340px;
    bottom: auto;
  }

  .cctv-device-card--nvr {
    top: 520px;
    bottom: auto;
  }

  .cctv-page-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .cctv-hero__copy h1 {
    font-size: 2.7rem;
    max-width: 10ch;
  }

  .cctv-hero__visual {
    min-height: 360px;
  }

  .cctv-camera-stage {
    min-height: 360px;
  }

  .cctv-camera {
    width: 100%;
    height: 280px;
    top: 14%;
    right: 0;
  }

  .cctv-camera__body {
    width: 270px;
    height: 132px;
    left: 8%;
  }

  .cctv-camera__lens--main {
    width: 64px;
    height: 64px;
    left: 32px;
    top: 32px;
  }

  .cctv-camera__lens--accent {
    width: 42px;
    height: 42px;
    left: 116px;
    top: 42px;
  }

  .cctv-camera__glow {
    left: 176px;
    width: 54px;
  }

  .cctv-hud--ring {
    width: 180px;
    height: 180px;
    right: 8%;
  }

  .cctv-hud--ring-secondary {
    width: 110px;
    height: 110px;
    right: 18%;
    top: 30%;
  }

  .cctv-process-step {
    padding-left: 3.8rem;
  }

  .cctv-copy-panel,
  .cctv-page-cta__inner {
    padding: 1.35rem;
  }
}

/* Services Page */
.slp-page-services .page-main {
  padding-top: 0;
}

.services-template {
  background:
    radial-gradient(circle at top left, rgba(54, 123, 203, 0.12), transparent 28%),
    linear-gradient(180deg, #f5f8fc 0%, #ffffff 22%, #f7f8fa 52%, #ffffff 100%);
}

.services-hero,
.services-overview,
.services-delivery,
.services-integration,
.services-cta {
  position: relative;
  overflow: hidden;
}

.services-hero {
  padding: 4.75rem 0 3.8rem;
  background:
    linear-gradient(135deg, #0c3156 0%, #154d7e 60%, #1b5f96 100%);
}

.services-hero::before,
.services-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.18;
  pointer-events: none;
}

.services-hero__inner,
.services-delivery__inner,
.services-integration__inner,
.services-cta__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.services-hero__inner,
.services-integration__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.services-hero__copy,
.services-integration__panel,
.services-cta__inner {
  position: relative;
  z-index: 1;
}

.services-hero__copy h1,
.services-cta__copy h2 {
  color: #ffffff;
}

.services-hero__copy p:not(.eyebrow),
.services-cta__copy p:not(.eyebrow) {
  color: rgba(236, 244, 255, 0.92);
}

.services-hero__actions,
.services-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1.8rem;
}

.services-hero__visual {
  display: grid;
  gap: 1.1rem;
}

.services-hero__panel {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 23, 43, 0.3);
  box-shadow: 0 28px 70px rgba(6, 17, 31, 0.24);
  backdrop-filter: blur(8px);
}

.services-hero__panel--primary {
  min-height: 430px;
  padding: 1.5rem;
}

.services-hero__panel--secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem;
}

.services-hero__grid {
  position: absolute;
  inset: 1rem;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.4;
}

.services-hero__signal {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(96, 193, 255, 0.16);
}

.services-hero__signal--one { inset: 10% 18% 18% 10%; }
.services-hero__signal--two { inset: 18% 26% 26% 18%; }
.services-hero__signal--three { inset: 26% 34% 34% 26%; }

.services-hero__node,
.services-hero__core,
.services-hero__metric,
.services-card,
.services-step,
.services-integration__panel,
.services-pill,
.services-cta__inner {
  border-radius: 24px;
}

.services-hero__node,
.services-hero__core,
.services-hero__metric {
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(7, 26, 52, 0.18);
}

.services-hero__node {
  padding: 0.9rem 1rem;
  min-width: 140px;
}

.services-hero__node span,
.services-hero__core strong,
.services-hero__metric-value {
  display: block;
  color: #0f3a66;
  font-weight: 800;
}

.services-hero__node small,
.services-hero__core p,
.services-hero__metric-label {
  display: block;
  color: #5b718a;
  line-height: 1.45;
}

.services-hero__node--eas { top: 8%; left: 6%; }
.services-hero__node--cctv { top: 12%; right: 4%; }
.services-hero__node--footfall,
.services-hero__node--display,
.services-hero__node--support {
  top: auto;
  bottom: 6%;
  width: 30%;
  min-width: 0;
}

.services-hero__node--footfall { left: 2%; }
.services-hero__node--display { left: 35%; right: auto; }
.services-hero__node--support { right: 1%; }

.services-hero__core {
  inset: 34% 18% auto;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(145deg, #f8fbff, #e8f2fa);
}

.services-hero__core p {
  margin-bottom: 0;
}

.services-hero__metric {
  position: relative;
  padding: 1rem 1.05rem;
  height: 100%;
}

.services-hero__metric-value {
  font-size: 1.2rem;
}

.services-overview,
.services-integration {
  padding: 4.6rem 0;
}

.services-delivery {
  padding: 4.6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.services-card {
  padding: 1.55rem;
  border: 1px solid rgba(15, 58, 102, 0.09);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 44px rgba(15, 58, 102, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-card:hover,
.services-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(15, 58, 102, 0.14);
}

.services-card__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-card.is-blue .services-card__badge { background: rgba(16, 103, 194, 0.1); color: #1067c2; }
.services-card.is-slate .services-card__badge { background: rgba(57, 84, 115, 0.12); color: #395473; }
.services-card.is-cyan .services-card__badge { background: rgba(23, 160, 210, 0.12); color: #1789b0; }
.services-card.is-violet .services-card__badge { background: rgba(110, 86, 204, 0.12); color: #6e56cc; }
.services-card.is-gold .services-card__badge { background: rgba(227, 145, 17, 0.12); color: #d07d0c; }
.services-card.is-rose .services-card__badge { background: rgba(194, 76, 115, 0.12); color: #ba476d; }

.services-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.22rem;
}

.services-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: #0f5e93;
  font-weight: 700;
}

.services-card__link::after {
  content: "->";
  margin-left: 0.45rem;
}

.services-delivery__inner {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.services-delivery__timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.services-step {
  position: relative;
  padding: 1.35rem 1.35rem 1.35rem 4.45rem;
  background: #ffffff;
  border: 1px solid rgba(15, 58, 102, 0.08);
  box-shadow: 0 20px 44px rgba(15, 58, 102, 0.08);
}

.services-step__index {
  position: absolute;
  left: 1.15rem;
  top: 1.2rem;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d5f95, #2b8ed6);
  color: #ffffff;
  font-weight: 800;
}

.services-step__content h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.services-integration__panel {
  padding: 1.8rem;
  background: linear-gradient(145deg, #ffffff, #edf4fa);
  border: 1px solid rgba(15, 58, 102, 0.08);
  box-shadow: 0 24px 54px rgba(15, 58, 102, 0.08);
}

.services-integration__list {
  display: grid;
  gap: 0.9rem;
}

.services-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 58, 102, 0.08);
  box-shadow: 0 16px 34px rgba(15, 58, 102, 0.07);
}

.services-pill__dot {
  width: 0.85rem;
  height: 0.85rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8d3b, #1e8ff3);
  box-shadow: 0 0 0 6px rgba(30, 143, 243, 0.08);
}

.services-cta {
  padding: 4.25rem 0;
  background: linear-gradient(135deg, #0b3157 0%, #155f96 100%);
}

.services-cta__inner {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(5, 18, 36, 0.18);
}

.services-template .button--secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.services-template .button--secondary:hover,
.services-template .button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1180px) {
  .services-hero__inner,
  .services-delivery__inner,
  .services-integration__inner,
  .services-cta__inner,
  .services-card-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .services-hero__panel--secondary,
  .services-delivery__timeline {
    grid-template-columns: 1fr;
  }

  .services-hero__panel--primary {
    min-height: 520px;
  }

  .services-hero__node--cctv,
  .services-hero__node--support,
  .services-hero__node--display {
    right: 4%;
  }

  .services-hero__node--display {
    right: auto;
  }
}

@media (max-width: 720px) {
  .services-hero {
    padding-top: 3.8rem;
  }

  .services-hero__copy h1 {
    font-size: 2.65rem;
  }

  .services-hero__panel--primary {
    min-height: 560px;
    padding: 1rem;
  }

  .services-hero__node {
    min-width: 118px;
    padding: 0.7rem 0.8rem;
  }

  .services-hero__core {
    inset: 30% 8% auto;
  }

  .services-card,
  .services-step,
  .services-integration__panel,
  .services-pill,
  .services-cta__inner {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .services-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .services-hero__panel--primary {
    min-height: 650px;
  }

  .services-hero__core {
    inset: 27% 5% auto;
  }

  .services-hero__node--footfall,
  .services-hero__node--display,
  .services-hero__node--support {
    width: 46%;
  }

  .services-hero__node--footfall {
    bottom: 21%;
    left: 2%;
  }

  .services-hero__node--display {
    bottom: 4%;
    left: 2%;
  }

  .services-hero__node--support {
    right: 2%;
    bottom: 4%;
  }
}

/* Dedicated About SLP Technologies page. */
.slp-page-about .page-main {
  padding: 0;
  background: #f5f8fb;
}

.about-template {
  overflow: hidden;
  background: #fff;
}

.about-template h2 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.08;
}

.about-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #071d36;
}

.about-hero__image,
.about-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero__image {
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.62;
}

.about-hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 20, 39, 0.98) 0%, rgba(6, 34, 62, 0.92) 44%, rgba(7, 35, 65, 0.28) 74%, rgba(7, 29, 53, 0.48) 100%),
    radial-gradient(circle at 78% 50%, rgba(41, 140, 220, 0.24), transparent 34%);
}

.about-hero::after,
.about-network::before,
.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.about-hero__copy {
  max-width: 790px;
}

.about-hero__copy h1 {
  max-width: 760px;
  margin: 0 0 1.5rem;
  color: #fff;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-hero__copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(237, 245, 252, 0.9);
}

.about-hero__copy .lead {
  color: #fff;
}

.about-hero__copy .button {
  margin-top: 1.25rem;
}

.about-hero__summary {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(5, 23, 43, 0.62);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.about-hero__summary div {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.8rem;
  align-items: center;
  min-height: 76px;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.about-hero__summary strong {
  color: var(--orange);
  font-size: 1.75rem;
}

.about-hero__summary span {
  color: rgba(241, 247, 252, 0.88);
  line-height: 1.35;
}

.about-story,
.about-features,
.about-network,
.about-footprint,
.about-map {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.about-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.about-story__media {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(10, 36, 68, 0.16);
}

.about-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(5, 25, 47, 0.76) 100%);
  pointer-events: none;
}

.about-story__media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: 28% center;
}

.about-story__media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-story__copy h2 {
  margin-bottom: 1.5rem;
  color: var(--blue-deep);
}

.about-story__copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.about-story__copy .about-story__statement {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid var(--orange);
  color: var(--blue-deep);
  font-size: 1.2rem;
  font-weight: 800;
}

.about-features {
  background:
    radial-gradient(circle at top right, rgba(29, 111, 184, 0.1), transparent 30%),
    #f4f7fa;
}

.about-features .section-heading {
  margin-bottom: 3rem;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-feature-card {
  min-height: 250px;
  padding: 2rem;
  border: 1px solid rgba(14, 72, 122, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 36, 68, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 123, 32, 0.32);
  box-shadow: 0 26px 56px rgba(10, 36, 68, 0.14);
}

.about-feature-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 1.4rem;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #1b6da8);
  box-shadow: 0 14px 28px rgba(11, 77, 134, 0.2);
}

.about-feature-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-feature-card h3 {
  margin: 0 0 0.85rem;
  color: var(--blue-deep);
  font-size: 1.22rem;
}

.about-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-network {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 141, 221, 0.28), transparent 27%),
    linear-gradient(135deg, #082846 0%, #0d4778 58%, #155f94 100%);
}

.about-network__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about-network__copy h2 {
  margin-bottom: 1.25rem;
  color: #fff;
}

.about-network__copy p:not(.eyebrow) {
  color: rgba(235, 244, 252, 0.9);
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-network__visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(5, 25, 47, 0.38);
  box-shadow: 0 28px 70px rgba(1, 12, 25, 0.22);
  backdrop-filter: blur(10px);
}

.about-network__line {
  position: absolute;
  inset: 12% 10%;
  border: 1px dashed rgba(104, 194, 255, 0.28);
  border-radius: 999px;
}

.about-location {
  position: relative;
  z-index: 1;
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 32px rgba(3, 17, 33, 0.18);
}

.about-location::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 0.7rem;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #42ad55;
  box-shadow: 0 0 0 3px rgba(66, 173, 85, 0.25);
}

.about-location--primary {
  grid-column: span 2;
  background: linear-gradient(145deg, #fff, #eaf4fb);
}

.about-location--primary::before {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.22);
}

.about-location strong,
.about-location span {
  display: block;
}

.about-location strong {
  color: var(--blue-deep);
}

.about-location span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.about-footprint {
  background: #fff;
}

.about-footprint__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about-footprint__copy h2,
.about-map__heading h2 {
  color: var(--blue-deep);
}

.about-footprint__copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.about-footprint__copy .about-footprint__partner {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--orange);
  background: #f5f8fb;
  color: var(--blue-deep);
  font-weight: 700;
}

.about-country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-country-grid li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 0.9rem;
  align-items: center;
  min-height: 82px;
  padding: 1rem;
  border: 1px solid rgba(13, 72, 122, 0.1);
  border-radius: 16px;
  color: var(--blue-deep);
  background: #f8fafc;
  box-shadow: 0 14px 30px rgba(10, 36, 68, 0.06);
  font-weight: 800;
}

.about-country-grid li > span {
  grid-row: span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #2083c6);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.about-country-grid .is-partner > span {
  background: linear-gradient(145deg, #348e48, #5fbd69);
}

.about-country-grid small {
  color: var(--muted);
  font-weight: 400;
}

.about-map {
  background:
    radial-gradient(circle at top left, rgba(24, 99, 152, 0.09), transparent 28%),
    #f3f6f9;
}

.about-map__heading {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.about-map__heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-map__figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 72, 122, 0.12);
  border-radius: 24px;
  background: #09243f;
  box-shadow: 0 28px 70px rgba(9, 38, 71, 0.16);
}

.about-map__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.about-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(135deg, #071f3a, #0d4a7c 65%, #17689f);
}

.about-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
}

.about-cta__copy {
  max-width: 850px;
}

.about-cta__copy h2 {
  margin-bottom: 1rem;
  color: #fff;
}

.about-cta__copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(237, 245, 252, 0.9);
  line-height: 1.7;
}

.about-cta .button {
  white-space: nowrap;
}

.slp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease var(--reveal-delay, 0ms),
    transform 600ms ease var(--reveal-delay, 0ms);
}

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

@media (max-width: 980px) {
  .about-hero__inner,
  .about-story__inner,
  .about-network__inner,
  .about-footprint__inner {
    grid-template-columns: 1fr;
  }

  .about-hero__copy {
    max-width: 760px;
  }

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

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

  .about-story__media,
  .about-story__media img {
    min-height: 430px;
  }

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

@media (max-width: 640px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero__image {
    object-position: 66% center;
  }

  .about-hero__overlay {
    background: rgba(5, 25, 47, 0.86);
  }

  .about-hero__inner {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .about-hero__copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .about-hero__summary,
  .about-feature-grid,
  .about-country-grid,
  .about-network__visual {
    grid-template-columns: 1fr;
  }

  .about-hero__summary div {
    grid-template-columns: 4rem 1fr;
  }

  .about-story__media,
  .about-story__media img {
    min-height: 340px;
  }

  .about-feature-card {
    min-height: 0;
  }

  .about-location--primary {
    grid-column: auto;
  }

  .about-network__visual {
    padding: 1.15rem;
  }

  .about-map__figure {
    border-radius: 16px;
  }

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

  .about-cta .button {
    width: fit-content;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-feature-card {
    transition: none;
  }
}

/* Site-wide floating social and contact links. */
.floating-social {
  position: fixed;
  right: max(30px, env(safe-area-inset-right));
  bottom: max(30px, env(safe-area-inset-bottom));
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.floating-social__link {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 12px rgba(20, 32, 51, 0.18);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.floating-social__link--facebook {
  background: #1877f2;
}

.floating-social__link--linkedin {
  background: #0a66c2;
}

.floating-social__link--whatsapp {
  background: #25d366;
}

.floating-social__icon {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.floating-social__label {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  width: max-content;
  padding: 7px 10px;
  border-radius: 5px;
  background: #172536;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .floating-social__link:hover,
  .floating-social__link:focus-visible {
    box-shadow: 0 6px 16px rgba(20, 32, 51, 0.22);
    transform: translateY(-1px);
  }

  .floating-social__link:hover .floating-social__label,
  .floating-social__link:focus-visible .floating-social__label {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

.floating-social__link:focus-visible {
  outline: 3px solid rgba(244, 123, 32, 0.55);
  outline-offset: 3px;
}

@media (max-width: 782px), (hover: none) {
  .floating-social {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .floating-social__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-social__link,
  .floating-social__label {
    transition: none;
  }
}

/* Homepage customer logo carousel. */
.customer-logos {
  --customer-logo-width: clamp(280px, 22vw, 320px);
  padding: clamp(4rem, 7vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 72, 122, 0.08);
  background: #fff;
}

.customer-logos__heading {
  max-width: 800px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.customer-logos__heading h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.customer-logos__heading p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.customer-logos__viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.customer-logos__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: customer-logos-scroll 78s linear infinite;
}

.customer-logos__list {
  display: flex;
  flex: none;
  gap: clamp(36px, 4vw, 56px);
  padding-right: clamp(36px, 4vw, 56px);
}

.customer-logos__item {
  display: flex;
  flex: 0 0 var(--customer-logo-width);
  width: var(--customer-logo-width);
  height: 152px;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.customer-logos__item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 95px;
  object-fit: contain;
  transition: filter 180ms ease, transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .customer-logos__viewport:hover .customer-logos__track {
    animation-play-state: paused;
  }

  .customer-logos__item:hover img {
    filter: drop-shadow(0 5px 8px rgba(20, 32, 51, 0.1));
    transform: scale(1.04);
  }
}

@keyframes customer-logos-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 980px) {
  .customer-logos {
    --customer-logo-width: 30vw;
  }

  .customer-logos__item {
    height: 126px;
    padding: 16px;
  }

  .customer-logos__item img {
    max-height: 85px;
  }
}

@media (max-width: 640px) {
  .customer-logos {
    --customer-logo-width: 44vw;
    padding: 3.5rem 0;
  }

  .customer-logos__item {
    height: 106px;
    padding: 14px;
  }

  .customer-logos__item img {
    max-height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-logos__viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .customer-logos__track {
    animation: none;
    will-change: auto;
  }

  .customer-logos__list[aria-hidden="true"] {
    display: none;
  }

  .customer-logos__item img {
    transition: none;
  }
}

/* Asset finance promotion components. */
.finance-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(244, 123, 32, 0.78);
  border-radius: 12px;
  background: #082f55;
  color: #fff;
  box-shadow: 0 10px 24px rgba(4, 24, 45, 0.2);
}

.finance-badge svg {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #ff923f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.finance-badge span,
.finance-badge strong,
.finance-badge small {
  display: block;
}

.finance-badge strong {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.2;
}

.finance-badge small {
  margin-top: 0.18rem;
  color: #ffc18f;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.home-finance {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(62, 170, 228, 0.2), transparent 30%),
    linear-gradient(135deg, #061f39 0%, #0b4d86 62%, #0a365f 100%);
  color: #fff;
}

.home-finance::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.home-finance__inner,
.finance-card__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.home-finance__icon,
.finance-card__icon {
  display: grid;
  width: clamp(86px, 10vw, 126px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 44px rgba(3, 18, 34, 0.2);
}

.home-finance__icon svg,
.finance-card__icon svg {
  width: 52%;
  height: 52%;
  fill: none;
  stroke: #ff923f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.finance-kicker {
  margin: 0 0 0.65rem;
  color: #ffad70;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.home-finance h2,
.finance-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.3vw, 3.35rem);
  line-height: 1.08;
}

.home-finance__content > p:not(.finance-kicker):not(.finance-disclaimer),
.finance-card__content > p:not(.finance-kicker):not(.finance-disclaimer) {
  max-width: 880px;
  margin: 0.85rem 0 0;
  color: rgba(244, 249, 253, 0.9);
  line-height: 1.72;
}

.home-finance__content > .home-finance__lead {
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 650;
}

.finance-terms {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 900px;
  margin: 1.7rem 0;
}

.finance-terms span {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.finance-terms strong {
  font-size: 1.25rem;
}

.finance-terms span:hover {
  border-color: rgba(255, 173, 112, 0.7);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.finance-button {
  min-height: 48px;
  border: 1px solid #f47b20;
  background: #f47b20;
  color: #10263c;
  box-shadow: 0 12px 28px rgba(2, 16, 31, 0.2);
}

.finance-button:hover,
.finance-button:focus-visible {
  border-color: #ff984c;
  background: #ff984c;
  color: #071b2e;
  transform: translateY(-2px);
}

.finance-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.68);
  outline-offset: 3px;
}

.finance-disclaimer {
  max-width: 940px;
  margin: 1.4rem 0 0;
  color: rgba(225, 235, 244, 0.75);
  font-size: 0.76rem;
  line-height: 1.55;
}

.finance-card {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.finance-card__inner {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(42, 155, 218, 0.18), transparent 28%),
    linear-gradient(135deg, #071f38 0%, #0c487c 100%);
  color: #fff;
  box-shadow: 0 24px 58px rgba(9, 38, 71, 0.18);
}

.finance-card h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

.finance-card__icon {
  width: clamp(72px, 8vw, 96px);
  border-radius: 20px;
}

.finance-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.finance-button--secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.finance-button--secondary:hover,
.finance-button--secondary:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-finance-context {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(244, 123, 32, 0.3);
  border-radius: 10px;
  background: #fff6ef;
  color: #263c50;
}

.contact-finance-context strong {
  color: var(--blue-deep);
  font-size: 1.05rem;
}

.contact-finance-context span {
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 780px) {
  .home-finance__inner,
  .finance-card__inner {
    grid-template-columns: 1fr;
  }

  .home-finance__icon,
  .finance-card__icon {
    width: 76px;
    border-radius: 18px;
  }

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

  .finance-terms span:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .finance-badge {
    padding: 0.65rem 0.8rem;
  }

  .finance-card {
    padding: 2.25rem 0;
  }

  .finance-card__inner {
    border-radius: 18px;
  }

  .finance-card__actions,
  .finance-card__actions .button,
  .home-finance .finance-button {
    width: 100%;
  }

  .finance-terms span {
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .finance-terms span,
  .finance-button {
    transition: none;
  }
}

/* Premium dark treatment for the Homepage EAS Systems feature section. */
.home #eas-systems.solution-section {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--blue-deep);
}

.home #eas-systems .solution-copy {
  gap: 1.15rem;
}

.home #eas-systems .solution-copy .eyebrow {
  color: #d6e9fb;
}

.home #eas-systems .solution-copy h2 {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: clamp(2.25rem, 4.3vw, 3.7rem);
}

.home #eas-systems .solution-copy p {
  color: rgba(236, 244, 255, 0.86);
}

.home #eas-systems .solution-copy .lead {
  color: #fff;
}

.home #eas-systems .feature-panel {
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.home #eas-systems .media-feature,
.home #eas-systems .media-gallery figure,
.home #eas-systems .additional-media-gallery figure {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home #eas-systems .media-feature {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.home #eas-systems .media-feature img {
  aspect-ratio: 2.35 / 1;
}

.home #eas-systems .media-feature:hover,
.home #eas-systems .media-gallery figure:hover,
.home #eas-systems .additional-media-gallery figure:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.34);
}

.home #eas-systems .additional-media-gallery {
  margin-bottom: -12px;
  transform: translateY(-12px);
}

.home #eas-systems .text-link .wp-block-button__link {
  position: relative;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  text-decoration: none;
}

.home #eas-systems .text-link .wp-block-button__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0.55);
  transform-origin: left;
  transition: background-color 180ms ease, transform 180ms ease;
}

.home #eas-systems .text-link .wp-block-button__link:hover::after,
.home #eas-systems .text-link .wp-block-button__link:focus-visible::after {
  background: var(--orange);
  transform: scaleX(1);
}

@media (max-width: 640px) {
  .home #eas-systems.solution-section {
    padding: 3.75rem 0;
  }

  .home #eas-systems .solution-copy h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .home #eas-systems .media-feature img,
  .home #eas-systems .media-gallery img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .home #eas-systems .additional-media-gallery {
    margin-bottom: 0;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home #eas-systems .media-feature,
  .home #eas-systems .media-gallery figure,
  .home #eas-systems .additional-media-gallery figure,
  .home #eas-systems .text-link .wp-block-button__link::after {
    transition: none;
  }
}

/* Homepage launch polish: unified accents, imagery and micro-interactions. */
.home .hero__content > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(245, 249, 252, 0.94);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

.home .hero__content .eyebrow,
.home .solution-copy > .eyebrow,
.home .product-detail-copy > .eyebrow,
.home .footfall-section__inner > .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.home .hero__content .eyebrow::after,
.home .solution-copy > .eyebrow::after,
.home .product-detail-copy > .eyebrow::after,
.home .footfall-section__inner > .eyebrow::after {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}

.home #eas-tagging-solutions,
.home #open-display-security,
.home #cctv {
  position: relative;
}

.home #eas-tagging-solutions::before,
.home #open-display-security::before,
.home #cctv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 64px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--orange);
  transform: translateX(-50%);
}

.home #open-display-security {
  background:
    radial-gradient(circle at top right, rgba(11, 77, 134, 0.055), transparent 30%),
    #fff;
}

.home #cctv {
  background:
    radial-gradient(circle at top left, rgba(11, 77, 134, 0.065), transparent 32%),
    var(--surface-soft);
}

.home .product-link {
  position: relative;
  overflow: hidden;
}

.home .product-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18%;
  left: 18%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home .product-link:hover::before,
.home .product-link:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.home .media-feature,
.home .media-gallery figure,
.home .additional-media-gallery figure,
.home .product-detail-media > figure,
.home .product-detail-media > .wp-block-gallery > figure,
.home .footfall-section__hero,
.home .footfall-section__image figure {
  border-radius: 12px;
}

.home .product-detail-media > figure,
.home .product-detail-media > .wp-block-gallery > figure,
.home .footfall-section__hero,
.home .footfall-section__image figure {
  box-shadow: 0 18px 44px rgba(20, 32, 51, 0.12);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home .product-detail-media > figure img,
.home .product-detail-media > .wp-block-gallery > figure img,
.home .footfall-section__hero img,
.home .footfall-section__image figure img {
  transition: transform 260ms ease;
}

.home .product-detail-media > figure:hover,
.home .product-detail-media > .wp-block-gallery > figure:hover,
.home .footfall-section__hero:hover,
.home .footfall-section__image figure:hover {
  border-color: rgba(244, 123, 32, 0.3);
  box-shadow: 0 25px 56px rgba(20, 32, 51, 0.17);
  transform: translateY(-4px);
}

.home .product-detail-media > figure:hover img,
.home .product-detail-media > .wp-block-gallery > figure:hover img,
.home .footfall-section__hero:hover img,
.home .footfall-section__image figure:hover img {
  transform: scale(1.012);
}

.home .feature-panel,
.home #eas-tagging-solutions .product-detail-copy ul,
.home #open-display-security .product-detail-copy ul {
  border-radius: 12px;
}

.home .button,
.home .wp-block-button__link {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.home .button:hover,
.home .wp-block-button__link:hover {
  transform: translateY(-2px);
}

.home .button:focus-visible,
.home .wp-block-button__link:focus-visible {
  outline: 3px solid rgba(244, 123, 32, 0.28);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .home .hero__content > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.62;
  }

  .home .hero__content .eyebrow::after,
  .home .solution-copy > .eyebrow::after,
  .home .product-detail-copy > .eyebrow::after,
  .home .footfall-section__inner > .eyebrow::after {
    width: 28px;
  }
}

@media (max-width: 980px) {
  .home .product-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .home .product-links {
    grid-template-columns: 1fr !important;
  }
}

@media (hover: none) {
  .home .product-detail-media > figure:hover,
  .home .product-detail-media > .wp-block-gallery > figure:hover,
  .home .footfall-section__hero:hover,
  .home .footfall-section__image figure:hover,
  .home .button:hover,
  .home .wp-block-button__link:hover {
    transform: none;
  }

  .home .product-detail-media > figure:hover img,
  .home .product-detail-media > .wp-block-gallery > figure:hover img,
  .home .footfall-section__hero:hover img,
  .home .footfall-section__image figure:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home .product-link::before,
  .home .product-detail-media > figure,
  .home .product-detail-media > .wp-block-gallery > figure,
  .home .product-detail-media img,
  .home .footfall-section__hero,
  .home .footfall-section__hero img,
  .home .footfall-section__image figure,
  .home .footfall-section__image figure img,
  .home .button,
  .home .wp-block-button__link {
    transition: none;
  }
}
