:root {
  --vended-black: #050505;
  --vended-dark: #111;
  --vended-green: #20ff7a;
  --vended-white: #ffffff;
  --vended-muted: #b8b8b8;
}

* {
  box-sizing: border-box;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #080808;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  color: var(--vended-white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: var(--vended-muted);
  text-decoration: none;
}

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

.page-section {
  padding: 90px 0;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 30px 0;
  color: var(--vended-muted);
}

.site-main {
  background: #000;
  color: #fff;
  min-height: 100vh;
}

.product-teaser {
  display: flex;
  justify-content: center;
  padding: 32px 12px;
}

.product-teaser-card {
  width: 100%;
  max-width: 1152px;
  background: #fff;
  color: #000;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 24px;
}

.product-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  background: #f8f8f8;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.product-image-button {
  height: 160px;
  width: 100%;
  border: 0;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  padding: 10px;
}

.product-image-button img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.product-image-button:hover img {
  transform: scale(1.05);
}

.product-image-button.type-u-image img {
  max-width: 70%;
  max-height: 70%;
}

.product-card-title {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  font-weight: 700;
}

.type-s {
  color: #ffeb00;
}

.type-c {
  color: #008080;
}

.type-u {
  color: #8E7CC3;
}

.product-card-cta {
  display: block;
  margin-top: auto;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.product-card-cta:hover {
  filter: brightness(0.95);
}

.type-s-bg {
  background: #ffeb00;
}

.type-c-bg {
  background: #008080;
}

.type-u-bg {
  background: #8E7CC3;
}

.section-placeholder {
  padding: 40px 16px;
  text-align: center;
  color: #aaa;
}

.image-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.image-zoom-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.image-zoom-inner {
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.96);
  transition: transform 200ms ease;
}

.image-zoom-overlay.is-active .image-zoom-inner {
  transform: scale(1);
}

.image-zoom-inner img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.image-zoom-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: 0;
  background: #000;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 768px) {
  .product-teaser-card {
    padding: 32px;
  }

  .product-teaser-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-image-button {
    height: 176px;
  }
}

.topbar {
  position: relative;
  z-index: 50;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 16px;
}

.topbar-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}

.topbar-side {
  width: 100%;
}

.topbar-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  color: #000;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  padding: 20px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.contact-image-link {
  align-self: center;
}

.contact-avatar {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.1);
}

.contact-copy {
  width: 100%;
  font-size: 14px;
  line-height: 1.25;
}

.contact-intro {
  margin: 0 0 10px;
  font-weight: 600;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  line-height: 1;
}

.contact-row svg {
  flex: 0 0 auto;
  color: rgba(0,0,0,0.7);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row a {
  color: #000;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-row a:hover {
  text-decoration: underline;
}

.topbar-centre {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px;
  text-align: center;
}

.topbar-logo-link {
  display: block;
  width: 160px;
  margin-bottom: 4px;
}

.topbar-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.35));
}

.topbar-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.topbar-definition {
  max-width: 672px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.brand-yellow {
  color: #FFE700;
}

.topbar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  background: #fff;
  color: #000;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  padding: 8px 16px;
}

.topbar-nav a {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 4px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.topbar-nav a:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.login-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.login-icon {
  display: none;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.1);
}

.login-placeholder {
  width: 100%;
  text-align: center;
}

.login-title {
  margin: 0 0 10px;
  font-weight: 800;
}

.login-button {
  display: inline-block;
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  font-weight: 800;
}

.login-button:hover {
  background: #222;
}

.portal-login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portal-login-input {
  width: 100%;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: #000;
  background: #fff;
}

.portal-login-input:focus {
  outline: 2px solid rgba(0,0,0,0.25);
  outline-offset: 1px;
}

.portal-login-button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.portal-login-button:hover {
  background: #333;
}

.portal-login-message {
  min-height: 18px;
  margin: 2px 0 0;
  font-size: 13px;
  text-align: center;
  color: #b00020;
}

.vended-principles {
  padding: 40px 16px;
  background: #000;
  color: #fff;
}

.vended-principles-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.vended-principles-intro {
  max-width: 768px;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}

.vended-principles-intro strong {
  color: #FFE700;
  font-weight: 800;
}

.vended-principles-title {
  margin: 0 0 20px;
  color: #fff;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
}

.vended-principles-headings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: min(600px, 90vw);
  margin: 0 auto 8px;
}

.vended-principle-heading {
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}

.principle-yellow {
  --principle-color: #FFE700;
}

.principle-teal {
  --principle-color: #008080;
}

.principle-purple {
  --principle-color: #8E7CC3;
}

.vended-principle-heading .principle-yellow,
.vended-principle-heading .principle-teal,
.vended-principle-heading .principle-purple {
  color: var(--principle-color);
}

.vended-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 8px;
  width: min(600px, 90vw);
  margin: 0 auto;
}

.vended-principle-card {
  min-height: 224px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: var(--principle-color);
  color: #000;
  text-align: center;
  padding: 16px;
  cursor: default;
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.vended-principle-card:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 14px 34px rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.vended-principle-card-inner {
  width: 100%;
}

.vended-principle-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.vended-principle-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vended-principle-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
}

.vended-principle-card p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  transition:
    max-height 220ms ease,
    opacity 220ms ease,
    margin-top 220ms ease;
}

.vended-principle-card:hover p,
.vended-principle-card:focus-within p {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}
.product-showcase {
  width: 100%;
  background: #000;
  color: #fff;
}

.product-showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 16px;
}

.product-showcase-header {
  margin-bottom: 32px;
  text-align: center;
}

.product-showcase-header h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-showcase-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.product-showcase-groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.showcase-group {
  position: relative;
}

.showcase-group-heading {
  margin-bottom: 12px;
}

.showcase-group-heading h3 {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.showcase-row-wrap {
  margin-left: -16px;
  margin-right: -16px;
}

.showcase-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 16px 8px;
}

.showcase-row::-webkit-scrollbar {
  display: none;
}

.showcase-product-card {
  position: relative;
  flex: 0 0 auto;
  width: 256px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: #000;
  box-shadow: 0 8px 22px rgba(0,0,0,0.32);
  cursor: zoom-in;
  padding: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.showcase-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(255,255,255,0.16);
}

.showcase-product-image {
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.showcase-product-caption {
  border-top: 1px solid #f0f0f0;
  padding: 12px 16px;
  text-align: center;
}

.showcase-product-caption p {
  margin: 0;
  color: #171717;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  white-space: normal;
}

.showcase-scroll-button {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: #8E7CC3;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.showcase-scroll-button:hover {
  opacity: 0.95;
}

.showcase-scroll-left {
  left: 0;
}

.showcase-scroll-right {
  right: 0;
}

.site-footer {
  margin-top: 40px;
  padding: 24px 16px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.footer-inner p {
  margin: 0 0 12px;
  opacity: 0.7;
}

.footer-legal-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-legal-nav a {
  color: #fff;
  text-decoration: underline;
  transition: color 160ms ease;
}

.footer-legal-nav a:hover {
  color: #d1d1d1;
}
.products-page {
  background: #000;
  color: #fff;
}

.products-intro {
  display: flex;
  justify-content: center;
  padding: 40px 16px 0;
}

.products-intro-inner {
  max-width: 896px;
  text-align: center;
}

.products-intro p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.products-intro .type-s,
.products-intro .type-c,
.products-intro .type-u {
  font-weight: 800;
}

.products-range-section {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}

.products-range-card {
  width: 100%;
  max-width: 1280px;
  background: #fff;
  color: #000;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
  padding: 32px 20px;
}

.products-range-card h1 {
  margin: 0 0 32px;
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.products-range-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.product-range-card {
  --product-theme: #FFE700;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  background: #f8f8f8;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.product-range-card.type-s-theme {
  --product-theme: #ffeb00;
}

.product-range-card.type-c-theme {
  --product-theme: #008080;
}

.product-range-card.type-u-theme {
  --product-theme: #8E7CC3;
}

.product-range-image {
  height: 192px;
  width: 100%;
  border: 0;
  background: #d1d1d1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  padding: 12px;
}

.product-range-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.product-range-image:hover img {
  transform: scale(1.05);
}

.product-range-image.is-type-u-image img {
  max-width: 70%;
  max-height: 70%;
}

.product-range-type-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 700;
}

.product-range-type-bar span {
  color: var(--product-theme);
}

.product-range-label-bar {
  background: var(--product-theme);
  color: #000;
  text-align: center;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 700;
}

.product-range-pricing {
  height: 180px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-range-pricing ul,
.product-range-description ul {
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.45;
}

.product-range-pricing a {
  font-weight: 700;
  text-decoration: underline;
  transition: color 160ms ease;
}

.product-range-pricing a:hover {
  color: #facc15;
}

.type-c-link {
  color: #008080;
}

.type-u-link {
  color: #8E7CC3;
}

.product-range-description {
  height: auto;
  min-height: 380px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-range-description p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.45;
}

.product-range-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 24px;
  padding: 0 16px;
}

.product-range-cta {
  display: block;
  width: 100%;
  border-radius: 14px;
  background: var(--product-theme);
  color: #000;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: background 160ms ease, transform 160ms ease;
}

.product-range-cta:hover {
  background: #facc15;
  transform: translateY(-1px);
}

.content-card-section {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
  background: #000;
  color: #fff;
}

.content-card {
  width: 100%;
  background: #fff;
  color: #000;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
  padding: 32px 20px;
}

.content-card-wide {
  max-width: 1152px;
}

.content-card h1 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.content-card p {
  margin: 0 0 16px;
  color: #111827;
  font-size: 18px;
  line-height: 1.65;
}

.content-card hr {
  border: 0;
  border-top: 1px solid #d1d5db;
  margin: 32px 0;
}

.content-card .lead-strong {
  font-weight: 700;
}

.text-link {
  font-weight: 700;
  text-decoration: underline;
  transition: color 160ms ease;
}

.text-link:hover {
  color: #facc15;
}

.type-s-link {
  color: #ffeb00;
  text-shadow: 0 0 1px rgba(0,0,0,0.45);
}

.type-c-link {
  color: #008080;
}

.type-u-link {
  color: #8E7CC3;
}

.content-list {
  margin: 0 0 16px;
  padding-left: 22px;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.6;
}

.content-list li {
  margin-bottom: 4px;
}

.content-card-cta-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0 24px;
}

.content-card-cta {
  display: block;
  width: 100%;
  border-radius: 14px;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: background 160ms ease, transform 160ms ease;
}

.content-card-cta:hover {
  background: #facc15;
  transform: translateY(-1px);
}

.content-card-medium {
  max-width: 896px;
}

.software-showcase {
  width: 100%;
  margin: 0 0 28px;
}

.software-showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.software-showcase h2 {
  margin: 0 0 16px;
  color: #000;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.software-showcase-scroller {
  position: relative;
}

.software-row-wrap {
  margin-left: -16px;
  margin-right: -16px;
}

.software-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 16px 8px;
}

.software-row::-webkit-scrollbar {
  display: none;
}

.software-screenshot-card {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: #000;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  cursor: zoom-in;
  padding: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.software-screenshot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.software-screenshot-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: #f3f3f3;
}

.software-screenshot-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.software-screenshot-caption {
  border-top: 1px solid #f0f0f0;
  padding: 12px 16px;
  text-align: center;
}

.software-screenshot-caption p {
  margin: 0;
  color: #171717;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.software-scroll-button {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  background: #8E7CC3;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.software-scroll-button:hover {
  opacity: 0.95;
}

.software-scroll-left {
  left: 0;
}

.software-scroll-right {
  right: 0;
}

.content-card-narrow {
  max-width: 672px;
}

.content-card h1.text-left {
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  color: #000;
  padding: 11px 14px;
  font: inherit;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(142, 124, 195, 0.45);
  outline-offset: 2px;
  border-color: #8E7CC3;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form button {
  border: 0;
  border-radius: 10px;
  background: #000;
  color: #fff;
  padding: 11px 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-form button:hover {
  background: #1f1f1f;
  transform: translateY(-1px);
}

.contact-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.contact-form-status {
  min-height: 20px;
  margin: 2px 0 0;
  text-align: center;
  font-size: 14px;
  color: #111827;
}

.contact-form-status.is-error {
  color: #b00020;
}

.contact-form-status.is-success {
  color: #047857;
}

.contact-form-help {
  margin: 2px 0 0 !important;
  text-align: center;
  color: #4b5563 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.contact-form-help a {
  color: #000;
  text-decoration: underline;
}

.contact-form-help a:hover {
  color: #374151;
}

.finance-card h1 {
  font-size: 34px;
}

.finance-partner-label {
  margin: -8px 0 8px !important;
  text-align: center;
  color: #000 !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.finance-logo-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 24px;
  border-radius: 14px;
  background: #000;
  padding: 16px;
}

.finance-logo-panel img {
  display: block;
  width: min(320px, 80%);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.35));
}

.finance-intro {
  margin-bottom: 32px !important;
  text-align: center;
  font-weight: 600;
}

.content-subsection {
  margin-bottom: 32px;
}

.content-subsection h2 {
  margin: 0 0 8px;
  color: #000;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.compact-list {
  list-style-position: inside;
  padding-left: 0;
}

.compact-list li {
  margin-bottom: 8px;
}

.finance-button-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 32px;
}

.finance-button-grid .content-card-cta {
  width: 100%;
}

.finance-disclaimer {
  margin-top: 40px !important;
  color: #6b7280 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

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

.contact-form select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  color: #000;
  padding: 11px 14px;
  font: inherit;
  font-size: 16px;
}

.contact-form select:focus {
  outline: 2px solid rgba(142, 124, 195, 0.45);
  outline-offset: 2px;
  border-color: #8E7CC3;
}

.mono-input {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.support-ticket-reference {
  min-height: 18px;
  margin: -6px 0 0 !important;
  text-align: center;
  color: #4b5563 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.support-ticket-reference span {
  color: #000;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 700;
}

.support-wallboard-page {
  min-height: 100vh;
  background: #000;
  color: #fff;
}

.support-wallboard {
  min-height: 100vh;
  background: #000;
  color: #fff;
  overflow: auto;
}

.support-wallboard-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px;
}

.support-wallboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.support-wallboard-header h1 {
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
}

.support-wallboard-header p {
  margin: 6px 0 0;
  color: #d1d5db;
  font-size: 14px;
}

.support-wallboard-meta {
  color: #d1d5db;
  text-align: right;
  font-size: 14px;
  line-height: 1.6;
}

.support-wallboard-meta span {
  color: #fff;
  font-weight: 700;
}

.wallboard-error {
  margin-top: 24px;
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 18px;
  background: rgba(127, 29, 29, 0.35);
  padding: 20px;
}

.wallboard-error-title {
  color: #fee2e2;
  font-weight: 800;
}

.wallboard-error-message {
  margin-top: 4px;
  color: rgba(254, 226, 226, 0.92);
  font-size: 14px;
}

.wallboard-table {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
}

.wallboard-table-head,
.wallboard-ticket-row {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 2.4fr 1.3fr;
  gap: 8px;
}

.wallboard-table-head {
  background: rgba(255,255,255,0.05);
  padding: 12px 16px;
  color: #d1d5db;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wallboard-table-body {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.wallboard-ticket-row {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.wallboard-ticket-age {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.wallboard-ticket-subject {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.wallboard-ticket-id {
  margin-top: 6px;
  color: #9ca3af;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.wallboard-ticket-device {
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.wallboard-ticket-assigned {
  margin-top: 4px;
  color: #d1d5db;
  font-size: 12px;
}

.wallboard-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.wallboard-status-open {
  background: #fef9c3;
  color: #713f12;
}

.wallboard-status-in-progress {
  background: #dbeafe;
  color: #1e3a8a;
}

.wallboard-status-waiting-customer {
  background: #f3e8ff;
  color: #581c87;
}

.wallboard-status-resolved {
  background: #dcfce7;
  color: #14532d;
}

.wallboard-status-default {
  background: #f3f4f6;
  color: #111827;
}

.wallboard-priority-urgent {
  background: #fee2e2;
  color: #7f1d1d;
}

.wallboard-priority-high {
  background: #ffedd5;
  color: #7c2d12;
}

.wallboard-priority-normal {
  background: #f3f4f6;
  color: #111827;
}

.wallboard-priority-low {
  background: #f1f5f9;
  color: #0f172a;
}

.wallboard-empty {
  padding: 40px 24px;
  text-align: center;
  color: #d1d5db;
}

.careers-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  padding: 40px 16px;
}

.careers-inner {
  width: 100%;
  max-width: 768px;
}

.careers-inner h1 {
  margin: 0 0 32px;
  color: #fff;
  text-align: center;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
}

.careers-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.careers-loading,
.careers-empty {
  margin: 0;
  color: #9ca3af;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.careers-empty a {
  color: #fff;
  text-decoration: underline;
}

.careers-empty a:hover {
  color: #d1d5db;
}

.career-card {
  background: #fff;
  color: #000;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  padding: 24px;
}

.career-card h2 {
  margin: 0 0 4px;
  color: #000;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.career-location {
  margin: 0 0 8px;
  color: #4b5563;
  font-size: 14px;
}

.career-summary {
  margin: 0;
  color: #111827;
  font-size: 16px;
  line-height: 1.5;
}

.career-details-link {
  display: inline-block;
  margin-top: 16px;
  color: #8E7CC3;
  text-decoration: none;
  font-weight: 800;
}

.career-details-link:hover {
  text-decoration: underline;
}

.job-details-section {
  background: #000;
  color: #fff;
  padding: 40px 16px;
}

.job-details-inner {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.job-details-loading,
.job-details-error {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #fff;
  text-align: center;
}

.job-details-inner h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
}

.job-details-meta {
  margin: 0 0 8px;
  color: #9ca3af;
  font-size: 16px;
}

.job-details-summary {
  margin: 0 0 24px;
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
}

.job-description {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

.job-description > * {
  margin-top: 0;
}

.job-description p,
.job-description ul,
.job-description ol {
  margin-bottom: 16px;
}

.job-description ul,
.job-description ol {
  padding-left: 24px;
}

.job-description li {
  margin-bottom: 6px;
}

.job-description h2,
.job-description h3,
.job-description h4 {
  margin: 28px 0 12px;
  color: #fff;
  line-height: 1.25;
}

.job-details-back {
  display: inline-block;
  margin-top: 40px;
  color: #8E7CC3;
  text-decoration: none;
  font-weight: 700;
}

.job-details-back:hover {
  text-decoration: underline;
}

.blog-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  padding: 40px 16px;
}

.blog-inner {
  width: 100%;
  max-width: 768px;
}

.blog-inner h1 {
  margin: 0 0 32px;
  color: #fff;
  text-align: center;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-loading,
.blog-empty {
  margin: 0;
  color: #9ca3af;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.blog-card {
  background: #fff;
  color: #000;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  padding: 24px;
}

.blog-image-strip {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}

.blog-image-strip-inner {
  display: flex;
  gap: 8px;
}

.blog-thumb {
  flex: 0 0 auto;
  width: 160px;
  height: 112px;
  object-fit: cover;
  border-radius: 10px;
  background: #f3f4f6;
}

.blog-card h2 {
  margin: 0 0 4px;
  color: #000;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.blog-meta {
  margin: 0 0 8px;
  color: #4b5563;
  font-size: 14px;
}

.blog-excerpt {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.5;
}

.blog-excerpt p {
  margin: 0 0 8px;
}

.blog-read-more {
  display: inline-block;
  margin-top: 16px;
  color: #8E7CC3;
  text-decoration: none;
  font-weight: 800;
}

.blog-read-more:hover {
  text-decoration: underline;
}

.blog-details-section {
  background: #000;
  color: #fff;
  padding: 40px 16px;
}

.blog-details-inner {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.blog-details-loading,
.blog-details-error {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #fff;
  text-align: center;
}

.blog-details-inner h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
}

.blog-details-meta {
  margin: 0 0 24px;
  color: #9ca3af;
  font-size: 16px;
}

.blog-detail-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

.blog-detail-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  background: #111;
}

.blog-detail-content {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

.blog-detail-content > * {
  margin-top: 0;
}

.blog-detail-content p,
.blog-detail-content ul,
.blog-detail-content ol {
  margin-bottom: 16px;
}

.blog-detail-content ul,
.blog-detail-content ol {
  padding-left: 24px;
}

.blog-detail-content li {
  margin-bottom: 6px;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
  margin: 28px 0 12px;
  color: #fff;
  line-height: 1.25;
}

.blog-detail-content a {
  color: #8E7CC3;
  font-weight: 700;
}

.blog-details-back {
  display: inline-block;
  margin-top: 40px;
  color: #8E7CC3;
  text-decoration: none;
  font-weight: 700;
}

.blog-details-back:hover {
  text-decoration: underline;
}

.catalogue-page {
  min-height: 100vh;
  background: #0b0b0b;
  color: #000;
}

.catalogue-shell {
  flex: 1 0 auto;
  padding: 24px 16px;
  background: #0b0b0b;
}

.catalogue-panel {
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  padding: 24px;
}

.catalogue-panel h1 {
  margin: 4px 0 16px;
  color: #000;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.catalogue-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.catalogue-filter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalogue-filter label {
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.catalogue-filter select {
  height: 36px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #000;
  padding: 0 10px;
  font-size: 14px;
}

.catalogue-alert {
  margin: 0 0 16px;
  border-radius: 10px;
  background: #fee2e2;
  color: #7f1d1d;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
}

.catalogue-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.catalogue-card-link {
  color: inherit;
  text-decoration: none;
}

.catalogue-card {
  height: 450px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.catalogue-card-link:hover .catalogue-card {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
}

.catalogue-cat-bar {
  background: #000;
  color: #111;
  padding: 8px 12px;
}

.catalogue-cat-bar span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.catalogue-sub-bar {
  background: #f3f4f6;
  color: #111;
  padding: 6px 12px;
}

.catalogue-sub-bar span {
  font-size: 12px;
  font-weight: 700;
}

.catalogue-meta-row {
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid #eee;
  background: #fafafa;
  padding: 6px 12px;
}

.catalogue-meta-label {
  opacity: 0.7;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.catalogue-meta-value {
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.catalogue-media {
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255,255,255,0.8);
}

.catalogue-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.catalogue-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 600;
}

.catalogue-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 14px;
}

.catalogue-card-body h3 {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}

.catalogue-card-body p {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.4;
}

.catalogue-empty {
  margin-top: 20px;
  color: #4b5563;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

.skeleton-card {
  height: 450px;
  background:
    linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%);
  background-size: 400% 100%;
  animation: catalogueSkeleton 1.2s ease-in-out infinite;
}

.catalogue-details-page {
  min-height: 100vh;
  background: #0b0b0b;
  color: #000;
}

.catalogue-details-shell {
  flex: 1 0 auto;
  padding: 24px 16px;
  background: #0b0b0b;
}

.catalogue-details-panel {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  padding: 24px;
}

.catalogue-details-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.catalogue-back-button,
.catalogue-print-button {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #000;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

.catalogue-print-button:hover,
.catalogue-back-button:hover {
  background: #f3f4f6;
}

.catalogue-details-loading {
  padding: 16px;
  color: #111;
}

.catalogue-details-alert {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fdba74;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 8px;
}

.catalogue-details-meta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
}

.catalogue-details-pill {
  border-radius: 999px;
  padding: 6px 10px;
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.catalogue-details-sub-pill {
  background: #f3f4f6;
  color: #111;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.catalogue-details-part-pill {
  background: #fafafa;
  border: 1px solid #eee;
  color: #111;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.catalogue-details-title {
  margin: 6px 0 14px;
  color: #000;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
}

.catalogue-details-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 1fr;
}

.catalogue-gallery-main {
  min-height: 400px;
  width: 100%;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogue-gallery-main img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 600px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.catalogue-details-no-img {
  color: #9ca3af;
}

.catalogue-thumb-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  margin-top: 12px;
}

.catalogue-thumb-button {
  height: 72px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogue-thumb-button.is-active {
  outline: 2px solid #111;
}

.catalogue-thumb-button img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.catalogue-specs {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.catalogue-spec-header {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 10px 14px;
}

.catalogue-spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalogue-spec-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px dashed #eee;
}

.catalogue-spec-item:last-child {
  border-bottom: 0;
}

.catalogue-spec-label {
  font-weight: 700;
  font-size: 13px;
  color: #374151;
}

.catalogue-spec-value {
  font-size: 13px;
  color: #111;
  text-align: right;
}

.catalogue-desc-card {
  margin-top: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: rgba(255,255,255,0.85);
}

.catalogue-desc-inner {
  padding: 18px 22px;
  color: #111;
  line-height: 1.55;
}

.catalogue-desc-inner p,
.catalogue-desc-inner ul,
.catalogue-desc-inner ol {
  margin-top: 0;
  margin-bottom: 14px;
}

.catalogue-desc-inner ul,
.catalogue-desc-inner ol {
  padding-left: 22px;
}

.apex-page {
  background: #000;
  color: #fff;
}

.apex-warning-section {
  display: flex;
  justify-content: center;
  padding: 40px 16px 0;
  background: #000;
}

.apex-warning-inner {
  max-width: 896px;
  text-align: center;
}

.apex-warning-inner p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.apex-urgency-section {
  margin-top: 40px;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 0 16px 10px;
}

.apex-warning-icon {
  margin-bottom: 8px;
  color: #dc2626;
  font-size: 52px;
  line-height: 1;
  animation: apexPulse 1.6s ease-in-out infinite;
}

.apex-countdown-ended {
  margin: 0;
  color: #facc15;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.apex-urgency-copy {
  margin: 10px auto 0;
  max-width: 920px;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.apex-urgency-copy span {
  color: #f87171;
  font-weight: 900;
}

.apex-urgency-copy strong {
  color: #9b7ede;
}

.apex-hero-cta {
  margin-top: 18px;
}

.apex-red-cta {
  display: inline-block;
  border-radius: 10px;
  background: #dc2626;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.28);
  transition: background 160ms ease, transform 160ms ease;
}

.apex-red-cta:hover {
  background: #b91c1c;
  transform: translateY(-1px);
}

.apex-card-section {
  padding-top: 40px;
}

.apex-project-section {
  padding-top: 0;
}

.apex-section-title {
  margin: 0 0 16px;
  color: #000;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.apex-gallery {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.apex-gallery-row {
  display: flex;
  gap: 16px;
  min-width: max-content;
}

.apex-gallery-item {
  flex: 0 0 auto;
  width: 288px;
  height: 288px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #f3f4f6;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  padding: 0;
  cursor: zoom-in;
}

.apex-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.apex-gallery-item:hover img {
  transform: scale(1.04);
}

@keyframes apexPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.05);
  }
}

@keyframes catalogueSkeleton {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}

@media (max-width: 520px) {
  .vended-principles-headings,
  .vended-principles-grid {
    width: 100%;
  }

  .vended-principle-heading {
    font-size: 15px;
  }

  .vended-principle-card {
    min-height: 150px;
    padding: 10px;
  }

  .vended-principle-card h3 {
    font-size: 15px;
  }

  .vended-principle-card p {
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  .catalogue-panel {
    padding: 18px;
  }

  .catalogue-filter {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .catalogue-filter select {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .topbar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbar-title {
    font-size: 18px;
  }

  .topbar-definition {
    font-size: 18px;
  }

  .topbar-nav a {
    font-size: 16px;
  }

  .vended-principles-intro {
    font-size: 24px;
  }

  .vended-principles-title {
    font-size: 40px;
  }

  .vended-principle-card {
    min-height: 160px;
  }

  .vended-principle-icon svg {
    width: 28px;
    height: 28px;
  }

  .vended-principle-card h3 {
    font-size: 24px;
  }

  .vended-principle-card p {
    font-size: 16px;
  }

  .product-showcase-inner {
    padding: 64px 24px;
  }

  .product-showcase-header {
    margin-bottom: 48px;
  }

  .product-showcase-header h2 {

    font-size: 30px;

  }

  .product-showcase-header ul {
    font-size: 24px;
  }

  .product-showcase-groups {
    gap: 56px;
  }

  .showcase-row-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .showcase-row {
    gap: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .showcase-product-card {
    width: 288px;
  }

  .showcase-product-image img {
    padding: 20px;
  }

  .showcase-group-heading {
    margin-bottom: 16px;
  }

  .showcase-group-heading h3 {
    font-size: 20px;
  }
  
  .footer-legal-nav {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .products-intro p {
    font-size: 20px;
  }

  .products-range-card {
    padding: 40px;
  }

  .product-range-type-bar,
  .product-range-label-bar {
    font-size: 16px;
  }

  .product-range-cta {
    width: auto;
    font-size: 16px;
  }

  .content-card {
    padding: 40px;
  }

  .content-card-cta {
    width: auto;
    font-size: 16px;
  }

  .software-showcase h2 {
    font-size: 30px;
  }

  .software-row-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .software-row {
    gap: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .software-screenshot-card {
    width: 320px;
  }

    .finance-card h1 {
    font-size: 40px;
  }

  .finance-button-grid {
    flex-direction: row;
  }

  .finance-button-grid .content-card-cta {
    width: auto;
  }
  
  .blog-detail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .vended-principle-card {
    min-height: 176px;
  }
  
  .showcase-scroll-button {
    display: flex;
  }

  .products-range-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-range-pricing {
    height: 150px;
  }

  .product-range-description {
    min-height: 500px;
  }

  .software-scroll-button {
    display: flex;
  }
  
  .apex-warning-inner p {
    font-size: 20px;
  }

  .apex-countdown-ended {
    font-size: 40px;
  }

  .apex-urgency-copy {
    font-size: 20px;
  }
}


@media (max-width: 820px) {
  .support-wallboard-inner {
    padding: 20px;
  }

  .support-wallboard-header {
    flex-direction: column;
  }

  .support-wallboard-meta {
    text-align: left;
  }

  .wallboard-table-head {
    display: none;
  }

  .wallboard-ticket-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wallboard-ticket-row > div::before {
    display: block;
    margin-bottom: 4px;
    color: #9ca3af;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .wallboard-ticket-row > div:nth-child(1)::before {
    content: "Age";
  }

  .wallboard-ticket-row > div:nth-child(2)::before {
    content: "Status";
  }

  .wallboard-ticket-row > div:nth-child(3)::before {
    content: "Priority";
  }

  .wallboard-ticket-row > div:nth-child(4)::before {
    content: "Subject";
  }

  .wallboard-ticket-row > div:nth-child(5)::before {
    content: "Device / Assigned";
  }

  .catalogue-details-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-gallery-main {
    min-height: 280px;
  }
}

@media (min-width: 1024px) {
  .topbar-inner {
    flex-direction: row;
  }

  .topbar-side {
    width: 320px;
  }

  .contact-image-link {
    align-self: flex-start;
  }

  .topbar-logo-link {
    width: 224px;
  }

  .login-icon {
    display: block;
  }

  .vended-principle-card {
    min-height: 192px;
  }
  
  .product-showcase-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .showcase-product-card {
    width: 320px;
  }

  .software-screenshot-card {
    width: 360px;
  }
}


@media print {
  @page {
    margin: 0;
  }

  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
    background: #000 !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .no-print {
    display: none !important;
  }

  .topbar {
    background: #000 !important;
    color: #fff !important;
    padding: 18px 16px 8px !important;
  }

  .topbar-inner {
    display: block !important;
  }

  .topbar-contact {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto 18px !important;
  }

  .topbar-card.contact-card {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    border-radius: 14px !important;
    padding: 16px !important;
  }

  .contact-avatar {
    width: 120px !important;
    height: 120px !important;
  }

  .contact-copy,
  .contact-copy p,
  .contact-row,
  .contact-row a {
    color: #000 !important;
  }

  .catalogue-details-page,
  .catalogue-details-shell {
    background: #000 !important;
    color: #fff !important;
    padding: 10px 14px 24px !important;
  }

  .catalogue-details-panel {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    border-radius: 16px !important;
    padding: 22px !important;
    max-width: 1100px !important;
  }

  .catalogue-details-title,
  .catalogue-details-panel,
  .catalogue-details-panel p,
  .catalogue-details-panel li,
  .catalogue-details-panel span,
  .catalogue-desc-inner {
    color: #000 !important;
  }

  .catalogue-details-grid {
    grid-template-columns: 1.15fr 1fr !important;
    gap: 18px !important;
  }

  .catalogue-gallery-main {
    min-height: 360px !important;
    background: #fff !important;
  }

  .catalogue-gallery-main img {
    max-height: 520px !important;
  }

  .catalogue-thumb-row {
    display: none !important;
  }

  .catalogue-spec-header {
    color: #fff !important;
  }

  .catalogue-spec-label,
  .catalogue-spec-value {
    color: #000 !important;
  }

  .catalogue-desc-card {
    background: #fff !important;
  }

  .site-footer {
    display: none !important;
  }
}
