:root {
  --primary: #1dbcd5;
  --primary-strong: #119eb5;
  --primary-soft: #eaf9fc;
  --dark: #091f2f;
  --dark-2: #102d3e;
  --ink: #203442;
  --muted: #647681;
  --line: #d8e3e7;
  --surface: #f4f8f9;
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(9, 31, 47, 0.08);
  --shadow-md: 0 20px 55px rgba(9, 31, 47, 0.13);
  --shadow-lg: 0 30px 80px rgba(9, 31, 47, 0.19);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --header-height: 82px;
  --container: 1200px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/*New scroll for clients*/
.scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.scroll-content img {
  height: 100px;
  width: auto;
  margin-right: 5px;
  flex-shrink: 0;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1,
h2 {
  font-weight: 800;
}

h3,
h4 {
  font-weight: 750;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 7.2vw, 6.8rem);
  max-width: 920px;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.9vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

p {
  margin-bottom: 18px;
}

em {
  color: var(--primary);
  font-style: normal;
}

::selection {
  color: var(--dark);
  background: var(--primary);
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 148px);
}

.lead {
  color: var(--dark);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 600;
  line-height: 1.65;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--dark);
  background: var(--primary);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--primary-strong);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 99px;
}

.eyebrow-light {
  color: var(--white);
}

.eyebrow-light > span:first-child {
  background: var(--primary);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  color: var(--dark);
  background: var(--primary);
  box-shadow: none;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  transition:
    transform 0.25s var(--ease),
    background-color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.button:hover {
  border-color: var(--white);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.button .icon {
  transition: transform 0.25s var(--ease);
}

.button:hover .icon {
  transform: translateX(4px);
}

.button-dark {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
}

.button-dark:hover {
  color: var(--dark);
  background: var(--primary);
  border-color: var(--primary);
}

.button-light {
  color: var(--dark);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
}

.button-ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.button-ghost-light:hover {
  color: var(--dark);
  background: var(--white);
  border-color: var(--white);
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
}

.button-wide {
  width: 100%;
}

.text-link,
.text-button,
.footer-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
}

.text-link .icon {
  color: var(--primary-strong);
  transition: transform 0.25s var(--ease);
}

.text-link:hover .icon {
  transform: translateX(5px);
}

.round-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(9, 31, 47, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.round-button:hover {
  color: var(--dark);
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.round-button-dark {
  color: var(--dark);
  background: var(--white);
  border-color: var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.04rem;
}

.split-heading h2 {
  margin-bottom: 0;
}

.section-heading-light h2,
.section-heading-light p {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

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

/* Loader */
.site-loader {
  position: fixed;
  z-index: 9998;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--white);
  background: var(--dark);
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

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

.site-loader p {
  margin: 18px 0 0;
  color: #c8d9df;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.loader-mark {
  position: relative;
  width: 74px;
  height: 88px;
  background: var(--primary);
  clip-path: polygon(
    50% 0,
    100% 18%,
    100% 60%,
    80% 83%,
    50% 100%,
    20% 83%,
    0 60%,
    0 18%
  );
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

.loader-mark::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: var(--dark);
  clip-path: inherit;
}

.loader-mark span::before,
.loader-mark span::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 22px;
  width: 31px;
  height: 16px;
  border: 4px solid var(--primary);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
}

.loader-mark span::before {
  top: 26px;
}

.loader-mark span::after {
  top: 40px;
}

@keyframes loaderPulse {
  to {
    transform: scale(1.06);
  }
}
.loader-mark--wide {
  width: 400px;
  height: auto;
}

.loader-mark--wide img {
  width: 100%;
  height: auto;
}
/*Hiding loader mark*/
.loader-mark {
  background: transparent !important;
  clip-path: none !important;
}

.loader-mark::before,
.loader-mark::after,
.loader-mark span,
.loader-mark span::before,
.loader-mark span::after {
  display: none !important;
}

/* Utility bar and header */
.utility-bar {
  position: relative;
  z-index: 30;
  color: #c8d6dc;
  background: var(--dark);
  font-size: 0.76rem;
}

.utility-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p,
.utility-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

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

.utility-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(9, 31, 47, 0.08);
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(9, 31, 47, 0.09);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 205px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.nav-link {
  position: relative;
  padding-block: 29px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.is-active {
  color: var(--dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: var(--dark);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle .icon {
  width: 24px;
  height: 24px;
}

.menu-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 38px));
  color: var(--white);
  background: var(--dark);
  overflow: hidden;
}

.hero-slider,
.hero-slide {
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.85s ease,
    visibility 0.85s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s linear;
}

.hero-slide.is-active > img {
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(9, 31, 47, 0.75);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0 52% 0 0;
  background: rgba(9, 31, 47, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  padding-top: 70px;
  padding-bottom: 135px;
}

.hero-content h1,
.hero-content h2 {
  max-width: 910px;
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(3.1rem, 7.1vw, 6.65rem);
}

.hero-content h2 {
  font-weight: 800;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 31px;
  color: #e2edf1;
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.hero-proof {
  display: grid;
  max-width: 770px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-proof > div {
  display: grid;
  gap: 3px;
  padding: 20px 28px 0 0;
}

.hero-proof > div + div {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof strong {
  color: var(--white);
  font-size: 0.98rem;
}

.hero-proof span {
  color: #b8cbd2;
  font-size: 0.79rem;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 42px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-arrows {
  display: flex;
  gap: 10px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 38px;
  height: 18px;
  padding: 7px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.slider-dots button span {
  display: block;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  overflow: hidden;
}

.slider-dots button.is-active span {
  background: var(--primary);
}

.hero-pause {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
}

.play-mark {
  display: none;
}

.hero-pause.is-paused .pause-bars {
  display: none;
}

.hero-pause.is-paused .play-mark {
  display: block;
  margin-left: 2px;
}

.response-card {
  position: absolute;
  z-index: 8;
  right: 4vw;
  bottom: 150px;
  display: grid;
  width: min(430px, calc(100% - 40px));
  min-height: 92px;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 16px 16px 19px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(9, 31, 47, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.response-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 14px;
}

.response-icon span {
  position: absolute;
  width: 68px;
  height: 68px;
  border: 2px solid rgba(29, 188, 213, 0.3);
  border-radius: 50%;
  animation: responsePulse 1.8s ease-out infinite;
}

@keyframes responsePulse {
  from {
    opacity: 1;
    transform: scale(0.7);
  }
  to {
    opacity: 0;
    transform: scale(1.25);
  }
}

.response-card small,
.response-card strong {
  display: block;
}

.response-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

.response-card strong {
  font-size: 0.94rem;
}

.response-card > a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--dark);
  border-radius: 50%;
}

.response-card > a:hover {
  color: var(--dark);
  background: var(--primary);
}

/* Confidence strip */
.confidence-strip {
  padding: 78px 0 42px;
  background: var(--white);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.confidence-item {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 15px;
  padding: 24px;
  background: var(--white);
}

.confidence-item + .confidence-item {
  border-left: 1px solid var(--line);
}

.confidence-item > .icon {
  width: 36px;
  height: 36px;
  color: var(--primary-strong);
}

.confidence-item strong,
.confidence-item small {
  display: block;
}

.confidence-item strong {
  margin-bottom: 2px;
  color: var(--dark);
  font-size: 0.9rem;
}

.confidence-item small {
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

/* Services */
.services-section {
  padding-top: 95px;
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(9, 31, 47, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(29, 188, 213, 0.55);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.service-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: rgba(9, 31, 47, 0.33);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.service-body {
  position: relative;
  padding: 48px 26px 28px;
}

.service-icon {
  position: absolute;
  top: -34px;
  left: 25px;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border: 6px solid var(--white);
  border-radius: 18px;
}

.service-icon .icon {
  width: 28px;
  height: 28px;
}

.service-body h3 {
  font-size: 1.28rem;
}

.service-body p {
  min-height: 78px;
  color: var(--muted);
  font-size: 0.9rem;
}

.solution-finder {
  display: grid;
  grid-template-columns: 0.82fr 1.15fr;
  gap: 34px 54px;
  align-items: start;
  margin-top: 78px;
  padding: 42px;
  color: var(--white);
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.finder-intro h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.finder-intro p:last-child {
  color: #b8cbd2;
}

.finder-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.finder-form label {
  display: grid;
  gap: 7px;
  color: #c5d6dc;
  font-size: 0.72rem;
  font-weight: 750;
}

.finder-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 38px 0 13px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 10px;
  cursor: pointer;
}

.finder-form .button {
  grid-column: 1 / -1;
  margin-top: 7px;
}

.finder-result {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--dark-2);
  border: 1px solid rgba(29, 188, 213, 0.28);
  border-radius: 16px;
}

.finder-result-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 14px;
}

.finder-result small,
.finder-result strong,
.finder-result p {
  display: block;
}

.finder-result small {
  color: var(--primary);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finder-result strong {
  margin: 2px 0 3px;
  color: var(--white);
  font-size: 1.06rem;
}

.finder-result p {
  margin: 0;
  color: #b8cbd2;
  font-size: 0.81rem;
}

/* About */
.about-section {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(55px, 8vw, 105px);
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 660px;
}

.about-main-image,
.about-side-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-main-image {
  top: 0;
  left: 0;
  width: 68%;
  height: 540px;
}

.about-side-image {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 310px;
  border: 8px solid var(--white);
}

.about-main-image img,
.about-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  top: 38px;
  right: 0;
  display: grid;
  width: 170px;
  height: 150px;
  place-content: center;
  padding: 20px;
  color: var(--dark);
  background: var(--primary);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.about-experience strong {
  font-size: 2.1rem;
  line-height: 1;
}

.about-experience small {
  margin-top: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-gif {
  position: absolute;
  bottom: 22px;
  left: 22px;
  width: 270px;
  overflow: hidden;
  background: var(--dark);
  border: 7px solid var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.about-gif img {
  width: 100%;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.about-highlights {
  display: grid;
  gap: 18px;
  margin: 30px 0 34px;
}

.about-highlights > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.about-highlights > div > .icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--dark);
  background: var(--primary-soft);
  border-radius: 12px;
}

.about-highlights strong,
.about-highlights small {
  display: block;
}

.about-highlights strong {
  color: var(--dark);
  font-size: 0.94rem;
}

.about-highlights small {
  color: var(--muted);
  font-size: 0.82rem;
}

.story-panel {
  display: grid;
  grid-template-columns: 245px 1fr;
  margin-top: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-tabs {
  display: grid;
  align-content: center;
  background: var(--dark);
}

.story-tabs button {
  position: relative;
  min-height: 72px;
  padding: 17px 24px;
  color: #b8cbd2;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  text-align: left;
  font-size: 0.87rem;
  font-weight: 800;
}

.story-tabs button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.story-tabs button:hover,
.story-tabs button.is-active {
  color: var(--white);
  background: var(--dark-2);
}

.story-tabs button.is-active::before {
  transform: scaleY(1);
}

.story-content {
  min-height: 330px;
  padding: 64px;
}

.story-pane {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: start;
  animation: paneIn 0.4s var(--ease);
}

@keyframes paneIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-index {
  color: var(--primary-strong);
  font-size: 1rem;
  font-weight: 900;
}

.story-pane h3 {
  max-width: 720px;
  margin-bottom: 17px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.story-pane p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

/* Why */
.why-section {
  color: var(--white);
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  position: relative;
  min-height: 315px;
  padding: 29px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.why-card:hover {
  background: #14384c;
  border-color: rgba(29, 188, 213, 0.55);
  transform: translateY(-7px);
}

.why-card > span {
  position: absolute;
  top: 21px;
  right: 23px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  font-weight: 900;
}

.why-card > .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 46px;
  color: var(--primary);
}

.why-card h3 {
  color: var(--white);
}

.why-card p {
  margin: 0;
  color: #b8cbd2;
  font-size: 0.88rem;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-line > div {
  position: relative;
  display: flex;
  gap: 13px;
  padding: 30px 20px 0 0;
}

.process-line > div::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--primary);
  border: 3px solid var(--dark);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--primary);
}

.process-line strong {
  color: var(--primary);
  font-size: 0.78rem;
}

.process-line b,
.process-line small {
  display: block;
}

.process-line b {
  color: var(--white);
  font-size: 0.91rem;
}

.process-line small {
  color: #91a8b2;
  font-size: 0.71rem;
}

/* Smart operations */
.smart-section {
  background: var(--primary-soft);
}

.smart-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
}

.smart-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 26px 0 34px;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 650;
}

.check-list li .icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  color: var(--dark);
  background: var(--primary);
  border-radius: 50%;
}

.my-dashboard {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(9, 31, 47, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-top > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dashboard-top strong {
  color: var(--dark);
  font-size: 0.86rem;
}

.dashboard-top small {
  padding: 4px 8px;
  color: var(--dark);
  background: var(--primary);
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(29, 188, 213, 0.14);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px 0;
}

.dashboard-stats > div {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.dashboard-stats small,
.dashboard-stats strong,
.dashboard-stats span {
  display: block;
}

.dashboard-stats small {
  color: var(--muted);
  font-size: 0.66rem;
}

.dashboard-stats strong {
  margin: 3px 0;
  color: var(--dark);
  font-size: 1.65rem;
  line-height: 1;
}

.dashboard-stats span {
  color: var(--primary-strong);
  font-size: 0.62rem;
  font-weight: 800;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.my-map {
  position: relative;
  min-height: 330px;
  background: #dfecef;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.my-map::before,
.my-map::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
}

.my-map::before {
  width: 150px;
  height: 90px;
  top: 38px;
  left: 40px;
  border: 2px solid #c0d0d6;
  transform: rotate(-8deg);
}

.my-map::after {
  width: 110px;
  height: 140px;
  right: 35px;
  bottom: 34px;
  border: 2px solid #c0d0d6;
  transform: rotate(9deg);
}

.road {
  position: absolute;
  z-index: 1;
  display: block;
  background: var(--white);
  border: 1px solid #cbd9de;
}

.road-a {
  top: 49%;
  left: -5%;
  width: 110%;
  height: 16px;
  transform: rotate(-9deg);
}
.road-b {
  top: -8%;
  left: 42%;
  width: 16px;
  height: 118%;
  transform: rotate(18deg);
}
.road-c {
  top: 27%;
  left: 5%;
  width: 92%;
  height: 10px;
  transform: rotate(20deg);
}
.road-d {
  top: 74%;
  left: 8%;
  width: 90%;
  height: 11px;
  transform: rotate(7deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: var(--dark);
  border: 5px solid var(--primary);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 8px 15px rgba(9, 31, 47, 0.2);
  transform: rotate(-45deg);
}

.map-pin i {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.pin-a {
  top: 25%;
  left: 30%;
}
.pin-b {
  top: 44%;
  left: 60%;
}
.pin-c {
  top: 66%;
  left: 42%;
}
.pin-d {
  top: 18%;
  right: 13%;
}

.demo-map > b,
.demo-map > small {
  position: absolute;
  z-index: 4;
  left: 20px;
  color: var(--dark);
}

.demo-map > b {
  bottom: 34px;
  font-size: 0.83rem;
}

.demo-map > small {
  bottom: 16px;
  font-size: 0.59rem;
}

.activity-feed {
  padding: 18px;
  background: var(--dark);
  border-radius: 16px;
}

.activity-feed h3 {
  margin-bottom: 19px;
  color: var(--white);
  font-size: 1rem;
}

.activity-feed > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.feed-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 9px;
}

.activity-feed p {
  margin: 0;
}

.activity-feed strong,
.activity-feed small {
  display: block;
}

.activity-feed strong {
  color: var(--white);
  font-size: 0.73rem;
  line-height: 1.35;
}

.activity-feed small {
  margin-top: 3px;
  color: #91a8b2;
  font-size: 0.61rem;
}

/* Team */
.team-section {
  overflow: hidden;
}

.team-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.team-heading > div:first-child {
  max-width: 760px;
}

.team-heading h2 {
  margin-bottom: 0;
}

.team-controls {
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
}

.demo-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -24px 0 32px;
  padding: 8px 12px;
  color: #526773;
  background: var(--primary-soft);
  border: 1px solid #c6eaf0;
  border-radius: 8px;
  font-size: 0.73rem;
}

.team-track {
  display: flex;
  gap: 22px;
  padding: 5px max(20px, calc((100vw - var(--container)) / 2)) 30px;
  margin-inline: calc((100vw - min(100vw, var(--container))) / -2);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--surface);
}

.team-card {
  position: relative;
  flex: 0 0 min(330px, 82vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.team-photo {
  position: relative;
  height: 380px;
  background: var(--surface);
  overflow: hidden;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: rgba(9, 31, 47, 0.35);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-photo > span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 5px 8px;
  color: var(--dark);
  background: var(--primary);
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-info {
  position: relative;
  min-height: 112px;
  padding: 23px 70px 22px 24px;
}

.team-info p {
  margin-bottom: 4px;
  color: var(--primary-strong);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-info h3 {
  margin: 0;
  font-size: 1.22rem;
}

.team-more {
  position: absolute;
  right: 20px;
  bottom: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--dark);
  background: var(--primary-soft);
  border: 1px solid #ccebf0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.team-more:hover {
  color: var(--white);
  background: var(--dark);
  transform: rotate(90deg);
}

/* Training */
.training-section {
  background: var(--surface);
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 7vw, 90px);
  align-items: center;
}

.training-media {
  position: relative;
  min-height: 650px;
}

.training-media > img {
  width: 90%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.video-button {
  position: absolute;
  right: 0;
  bottom: 24px;
  display: grid;
  width: 300px;
  grid-template-columns: 58px 1fr;
  gap: 2px 13px;
  align-items: center;
  padding: 20px;
  color: var(--white);
  background: var(--dark);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  text-align: left;
}

.video-button > span {
  display: grid;
  width: 56px;
  height: 56px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 50%;
}

.video-button b,
.video-button small {
  display: block;
}

.video-button b {
  font-size: 0.86rem;
}

.video-button small {
  color: #9db2bb;
  font-size: 0.65rem;
}

.video-button:hover > span {
  background: var(--white);
}

.training-badge {
  position: absolute;
  bottom: 9px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  color: var(--dark);
  background: var(--primary);
  border: 6px solid var(--surface);
  border-radius: 15px;
}

.training-badge > .icon {
  width: 32px;
  height: 32px;
}

.training-badge strong,
.training-badge small {
  display: block;
}

.training-badge strong {
  font-size: 0.79rem;
}

.training-badge small {
  font-size: 0.63rem;
}

.training-copy .lead {
  margin-bottom: 27px;
}

.training-accordion {
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item > button {
  display: grid;
  width: 100%;
  grid-template-columns: 42px 1fr 24px;
  gap: 10px;
  align-items: center;
  padding: 18px 0;
  color: var(--dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.accordion-item > button > span {
  color: var(--primary-strong);
  font-size: 0.74rem;
  font-weight: 900;
}

.accordion-item > button > b {
  font-size: 0.94rem;
}

.accordion-item > button > .icon {
  transition: transform 0.25s ease;
}

.accordion-item.is-open > button > .icon {
  transform: rotate(45deg);
}

.accordion-panel {
  padding: 0 0 20px 52px;
}

.accordion-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.training-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.training-modules article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.training-modules .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  color: var(--primary-strong);
}

.training-modules h3 {
  font-size: 1.1rem;
}

.training-modules p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Standards slider */
.standards-section {
  color: var(--white);
  background: var(--dark);
  overflow: hidden;
}

.standards-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.standards-copy h2 {
  color: var(--white);
}

.standards-copy > p:not(.eyebrow) {
  color: #b8cbd2;
}

.standards-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.standards-controls > span {
  color: #91a8b2;
  font-size: 0.73rem;
}

.standards-controls > span b {
  color: var(--white);
  font-size: 1rem;
}

.standards-slider {
  position: relative;
  min-height: 410px;
}

.standard-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(35px, 5vw, 62px);
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    transform 0.45s var(--ease);
}

.standard-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.standard-slide > .icon {
  width: 46px;
  height: 46px;
  color: var(--primary);
}

.standard-slide > p {
  max-width: 690px;
  margin: 40px 0;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.standard-slide > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.standard-slide strong,
.standard-slide span {
  display: block;
}

.standard-slide strong {
  color: var(--white);
  font-size: 0.92rem;
}

.standard-slide span {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
}

/* Contact */
.contact-section {
  background: var(--surface);
}

/* .contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(52px, 7vw, 95px);
  align-items: start;
} */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0;
}

.contact-cards > a,
.contact-cards > div {
  display: grid;
  min-height: 92px;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  transition:
    transform 0.2s var(--ease),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-cards > a:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.contact-cards > a > span,
.contact-cards > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--dark);
  background: var(--primary-soft);
  border-radius: 11px;
}

.contact-cards small,
.contact-cards strong {
  display: block;
}

.contact-cards small {
  color: var(--muted);
  font-size: 0.64rem;
}

.contact-cards strong {
  color: var(--dark);
  font-size: 0.76rem;
  line-height: 1.45;
}

.map {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
  /* position: relative;
  min-height: 245px;
  background: #dfecef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden; */
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map::before,
.map::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.65);
  border: 2px solid #c5d5da;
}

.map::before {
  top: 25px;
  left: 40px;
  width: 150px;
  height: 85px;
  transform: rotate(-7deg);
}

.map::after {
  right: 45px;
  bottom: 28px;
  width: 120px;
  height: 90px;
  transform: rotate(10deg);
}

.map-road {
  position: absolute;
  z-index: 1;
  height: 10px;
  background: var(--white);
  border: 1px solid #c8d8dd;
}

.r1 {
  top: 32%;
  left: -5%;
  width: 110%;
  transform: rotate(-8deg);
}
.r2 {
  top: 65%;
  left: -5%;
  width: 110%;
  transform: rotate(10deg);
}
.r3 {
  top: -10%;
  left: 35%;
  width: 12px;
  height: 120%;
  transform: rotate(12deg);
}
.r4 {
  top: -10%;
  right: 20%;
  width: 8px;
  height: 120%;
  transform: rotate(-18deg);
}
.r5 {
  top: 47%;
  left: 10%;
  width: 82%;
  transform: rotate(22deg);
}

.map-location {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  min-width: 180px;
  grid-template-columns: 32px 1fr;
  padding: 12px;
  color: var(--white);
  background: var(--dark);
  border: 4px solid var(--primary);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%);
}

.map-location > .icon {
  width: 28px;
  height: 28px;
  grid-row: 1 / 3;
  color: var(--primary);
}

.map-location strong,
.map-location small {
  display: block;
}

.map-location strong {
  font-size: 0.75rem;
}

.map-location small {
  color: #afc1c9;
  font-size: 0.58rem;
}

.map > p {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 9px;
  margin: 0;
  padding: 4px 7px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 5px;
  font-size: 0.55rem;
}

.contact-form {
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-heading {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 30px;
}

.form-heading > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 15px;
}

.form-heading small {
  color: var(--primary-strong);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 3px 0 0;
  font-size: 1.55rem;
}

.form-grid,
.modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.form-grid label,
.modal-form label {
  display: grid;
  gap: 7px;
  color: var(--dark);
  font-size: 0.73rem;
  font-weight: 800;
}

.field-full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  color: var(--dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

input,
select {
  min-height: 50px;
  padding: 0 13px;
}

textarea {
  min-height: 120px;
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(29, 188, 213, 0.13);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(9, 31, 47, 0.08);
}

.field-error {
  display: none;
  color: #3a4d58;
  font-size: 0.65rem;
  font-weight: 650;
}

label.has-error .field-error {
  display: block;
}

.consent {
  display: flex !important;
  grid-column: 1 / -1;
  gap: 10px !important;
  align-items: flex-start;
  margin: 20px 0;
  color: var(--muted) !important;
  font-weight: 550 !important;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.form-note {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.62rem;
  text-align: center;
}

/* Final CTA and footer */
.final-cta {
  padding-block: 72px;
  color: var(--white);
  background: var(--primary);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  max-width: 720px;
  margin: 0;
  color: var(--dark);
}

.final-cta .eyebrow-light {
  color: var(--dark);
}

.final-cta .eyebrow-light > span:first-child {
  background: var(--dark);
}

.final-cta-inner > div:last-child {
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
  justify-items: center;
}

.final-cta-inner > div:last-child > a {
  color: var(--dark);
  font-size: 0.76rem;
  font-weight: 850;
}

.site-footer {
  padding-top: 75px;
  color: #b8cbd2;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.8fr 1fr;
  gap: 55px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-grid > div > p {
  color: #91a8b2;
  font-size: 0.83rem;
}

.footer-grid h3 {
  margin-bottom: 21px;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.footer-grid > div:not(.footer-brand) > a,
.footer-button {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: #b8cbd2;
  font-size: 0.78rem;
}

.footer-grid a:hover,
.footer-button:hover {
  color: var(--primary);
}

.footer-button {
  margin-top: 18px;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: lowercase;
}

.social-links a:hover {
  color: var(--dark);
  background: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #78929d;
  font-size: 0.68rem;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Floating controls */
.floating-help {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 22px;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 99px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.floating-help b {
  font-size: 0.7rem;
}

.floating-help .help-pulse {
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(29, 188, 213, 0.45);
  border-radius: inherit;
  animation: helpPulse 2s ease-out infinite;
}

@keyframes helpPulse {
  from {
    opacity: 0.9;
    transform: scale(0.95);
  }
  to {
    opacity: 0;
    transform: scale(1.1);
  }
}

.scroll-top {
  position: fixed;
  z-index: 88;
  right: 26px;
  bottom: 84px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--dark);
  background: var(--primary);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.scroll-top .icon {
  transform: rotate(-90deg);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Cookie and soft popup */
.cookie-banner {
  position: fixed;
  z-index: 180;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  max-width: 820px;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  padding: 18px 22px;
  color: var(--white);
  background: var(--dark);
  border: 1px solid rgba(29, 188, 213, 0.5);
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  color: var(--white);
  font-size: 0.86rem;
}

.cookie-banner p {
  margin: 2px 0 0;
  color: #a9bec6;
  font-size: 0.72rem;
}

.cookie-banner > div:last-child {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-banner .text-button {
  color: #c6d6dc;
}

.soft-popup {
  position: fixed;
  z-index: 160;
  right: 22px;
  bottom: 22px;
  width: min(365px, calc(100% - 44px));
  padding: 27px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 7px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: popupIn 0.45s var(--ease);
}

.soft-popup[hidden] {
  display: none;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.soft-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  color: var(--muted);
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.soft-popup-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--dark);
  background: var(--primary);
  border-radius: 14px;
}

.soft-popup > small {
  color: var(--primary-strong);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soft-popup h2 {
  margin: 5px 0 10px;
  font-size: 1.7rem;
}

.soft-popup p {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Dialogs */
dialog.modal {
  width: min(960px, calc(100% - 32px));
  max-height: min(92vh, 900px);
  padding: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

dialog.modal::backdrop {
  background: rgba(9, 31, 47, 0.82);
  backdrop-filter: blur(4px);
}

dialog.modal[open] {
  animation: dialogIn 0.35s var(--ease);
}

@keyframes dialogIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-shell {
  position: relative;
  max-height: min(92vh, 900px);
  padding: clamp(31px, 5vw, 58px);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.modal-shell-wide {
  width: 100%;
}

.modal-shell-medium {
  max-width: 720px;
  margin-inline: auto;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.modal-close:hover {
  color: var(--white);
  background: var(--dark);
  transform: rotate(90deg);
}

.detail-modal-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 25px;
  color: var(--dark);
  background: var(--primary);
  border-radius: 17px;
}

.detail-modal-icon .icon {
  width: 30px;
  height: 30px;
}

.modal-shell > h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.modal-lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 1rem;
}

.modal-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.modal-detail-grid h3 {
  font-size: 1.08rem;
}

.modal-detail-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.modal-detail-grid li {
  position: relative;
  padding-left: 24px;
  font-size: 0.87rem;
}

.modal-detail-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-strong);
  font-weight: 900;
}

.modal-callout {
  padding: 25px;
  background: var(--primary-soft);
  border: 1px solid #cbeaf0;
  border-radius: var(--radius);
}

.modal-callout strong {
  color: var(--dark);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-callout p {
  color: var(--muted);
  font-size: 0.86rem;
}

.modal-form-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
}

.modal-form-intro {
  padding-right: 10px;
}

.modal-form-intro h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.modal-form-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.modal-form {
  align-content: start;
  padding: 25px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.media-modal {
  width: min(1120px, calc(100% - 32px)) !important;
}

.media-modal-shell {
  padding: 26px;
  background: var(--dark);
}

.media-modal-heading {
  padding: 12px 55px 18px 2px;
}

.media-modal-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
}

.media-modal-shell .modal-close {
  color: var(--white);
  background: var(--dark-2);
  border-color: rgba(255, 255, 255, 0.15);
}

.media-modal video,
.media-modal img {
  width: 100%;
  max-height: 70vh;
  margin-inline: auto;
  object-fit: contain;
  background: #061722;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.media-disclaimer {
  margin: 13px 0 0;
  color: #91a8b2;
  font-size: 0.68rem;
  text-align: center;
}

/* Toast */
.toast {
  position: fixed;
  z-index: 250;
  top: 22px;
  left: 50%;
  display: flex;
  min-width: min(420px, calc(100% - 40px));
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  color: var(--dark);
  background: var(--primary);
  border: 2px solid var(--dark);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 850;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -15px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.noscript {
  position: fixed;
  z-index: 9999;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px;
  color: var(--dark);
  background: var(--primary);
  font-weight: 800;
  text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --container: 960px;
  }

  .nav-cta {
    display: none;
  }
  .primary-nav {
    gap: 18px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .training-modules {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.6fr 0.8fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 8px 28px;
    align-items: start;
  }
  .footer-grid > div:last-child h3 {
    grid-column: 1 / -1;
  }
  .footer-grid > div:last-child p {
    margin: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .utility-actions p {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .primary-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(390px, 88vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px;
    background: var(--white);
    box-shadow: -20px 30px 60px rgba(9, 31, 47, 0.18);
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform 0.35s var(--ease);
  }

  .site-header.menu-active .primary-nav {
    transform: translateX(0);
  }

  .primary-nav .nav-link {
    padding: 16px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .nav-link::after {
    right: auto;
    bottom: 10px;
    width: 45px;
  }
  .nav-cta {
    display: inline-flex;
    margin-top: 20px;
  }

  .split-heading,
  .about-grid,
  .smart-grid,
  .training-grid,
  .standards-grid,
  .contact-grid,
  .modal-form-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }
  .confidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .confidence-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .confidence-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .solution-finder {
    grid-template-columns: 1fr;
  }
  .finder-result {
    grid-column: auto;
  }
  .about-visual {
    min-height: 610px;
  }
  .about-main-image {
    width: 72%;
  }
  .story-panel {
    grid-template-columns: 1fr;
  }
  .story-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
  .story-tabs button {
    min-height: 62px;
    padding: 12px;
    text-align: center;
  }
  .story-tabs button::before {
    top: auto;
    right: 0;
    bottom: 0;
    width: auto;
    height: 4px;
    transform: scaleX(0);
  }
  .story-tabs button.is-active::before {
    transform: scaleX(1);
  }
  .process-line {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 0;
  }
  .my-dashboard {
    max-width: 720px;
  }
  .training-media {
    max-width: 690px;
    min-height: 620px;
  }
  .training-grid {
    gap: 66px;
  }
  .contact-grid {
    gap: 65px;
  }
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .modal-form-layout {
    gap: 26px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .section {
    padding-block: 82px;
  }
  .utility-inner {
    min-height: 34px;
  }
  .utility-inner > p {
    font-size: 0.65rem;
  }
  .utility-actions a {
    font-size: 0.67rem;
  }
  .brand img {
    width: 177px;
  }

  .hero {
    min-height: 810px;
  }
  .hero-content {
    padding-top: 75px;
    padding-bottom: 150px;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }
  .hero-shade {
    background: rgba(9, 31, 47, 0.79);
  }
  .hero-shade::after {
    display: none;
  }
  .hero-copy {
    font-size: 0.98rem;
  }
  .hero-proof {
    grid-template-columns: 1fr;
    max-width: 330px;
  }
  .hero-proof > div {
    padding: 11px 0;
  }
  .hero-proof > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }
  .hero-actions {
    margin-bottom: 30px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .slider-dots {
    display: none;
  }
  .hero-controls {
    bottom: 40px;
  }
  .response-card {
    right: 14px;
    bottom: -30px;
  }

  .confidence-strip {
    padding-top: 77px;
  }
  .confidence-grid {
    grid-template-columns: 1fr;
  }
  .confidence-item + .confidence-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-grid,
  .why-grid,
  .training-modules,
  .contact-cards,
  .form-grid,
  .modal-form,
  .finder-form,
  .dashboard-stats,
  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 240px;
  }
  .service-body p {
    min-height: auto;
  }
  .solution-finder {
    padding: 26px;
  }
  .finder-form .button {
    grid-column: auto;
  }
  .finder-result {
    grid-template-columns: 1fr;
  }
  .finder-result-icon {
    width: 48px;
    height: 48px;
  }

  .about-visual {
    min-height: 560px;
  }
  .about-main-image {
    width: 82%;
    height: 450px;
  }
  .about-side-image {
    width: 52%;
    height: 240px;
  }
  .about-experience {
    top: 25px;
    width: 140px;
    height: 125px;
  }
  .about-experience strong {
    font-size: 1.7rem;
  }
  .about-gif {
    bottom: 10px;
    left: 8px;
    width: 210px;
  }
  .story-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-content {
    min-height: 360px;
    padding: 35px 26px;
  }
  .story-pane {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-card {
    min-height: 275px;
  }

  .my-dashboard {
    padding: 13px;
  }
  .dashboard-body {
    gap: 10px;
  }
  .demo-map {
    min-height: 280px;
  }
  .activity-feed {
    padding: 16px;
  }

  .team-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .team-controls {
    padding: 0;
  }
  .demo-note {
    margin-top: -15px;
  }
  .team-photo {
    height: 360px;
  }

  .training-media {
    min-height: 560px;
  }
  .training-media > img {
    width: 100%;
    height: 440px;
  }
  .video-button {
    width: calc(100% - 24px);
    right: 12px;
    bottom: 10px;
  }
  .training-badge {
    display: none;
  }
  .accordion-panel {
    padding-left: 0;
  }

  .standard-slide {
    padding: 30px;
  }
  .standards-slider {
    min-height: 450px;
  }
  .standard-slide > p {
    font-size: 1.55rem;
  }

  .contact-form {
    padding: 24px;
  }
  .field-full {
    grid-column: auto;
  }
  .consent {
    grid-column: auto;
  }

  .final-cta {
    padding-block: 60px;
  }
  .final-cta-inner > div:last-child {
    width: 100%;
  }
  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-grid > div:last-child {
    display: block;
    grid-column: 1 / -1;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 20px;
  }

  .floating-help b {
    display: none;
  }
  .floating-help {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }
  .scroll-top {
    right: 25px;
  }

  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .cookie-banner > div:last-child {
    width: 100%;
  }
  .cookie-banner .button {
    flex: 1;
  }

  .modal-detail-grid {
    grid-template-columns: 1fr;
  }
  .modal-shell {
    padding: 32px 22px 24px;
  }
  .modal-form {
    padding: 18px;
  }
  .media-modal-shell {
    padding: 14px;
  }
  .media-modal-heading {
    padding-left: 4px;
  }
}

@media (max-width: 460px) {
  .utility-inner > p {
    display: none;
  }
  .utility-inner {
    justify-content: center;
  }
  .hero {
    min-height: 850px;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: 2.75rem;
  }
  .hero-content {
    padding-top: 55px;
  }
  .response-card {
    grid-template-columns: auto 1fr;
  }
  .response-card > a {
    display: none;
  }
  .about-visual {
    min-height: 500px;
  }
  .about-main-image {
    width: 92%;
    height: 400px;
  }
  .about-side-image {
    width: 55%;
    height: 200px;
  }
  .about-experience {
    width: 115px;
    height: 105px;
    right: 0;
  }
  .about-experience strong {
    font-size: 1.4rem;
  }
  .about-gif {
    width: 175px;
  }
  .process-line {
    grid-template-columns: 1fr;
    border-top: 0;
  }
  .process-line > div {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }
  .process-line > div::before {
    top: -6px;
  }
  .team-card {
    flex-basis: 86vw;
  }
  .team-photo {
    height: 340px;
  }
  .training-media {
    min-height: 530px;
  }
  .training-media > img {
    height: 390px;
  }
  .video-button {
    grid-template-columns: 48px 1fr;
  }
  .video-button > span {
    width: 48px;
    height: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .soft-popup {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide > img {
    transform: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Polished portal upgrade: systems, clients, safety publisher
   ========================================================= */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.page-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.page-progress > span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(29, 188, 213, 0.55);
  transform-origin: left center;
}

.primary-nav {
  gap: clamp(12px, 1.25vw, 22px);
}

.nav-link {
  font-size: 0.75rem;
}

/* Hero polish */
.hero-slider {
  --hero-x: 0px;
  --hero-y: 0px;
}

.hero-slide.is-active > img {
  transform: scale(1.035) translate3d(var(--hero-x), var(--hero-y), 0);
  transition: transform 7.2s linear;
}

.hero-slide.is-active .hero-content > * {
  animation: heroContentPop 0.78s var(--ease) both;
}

.hero-slide.is-active .hero-content > *:nth-child(2) {
  animation-delay: 0.08s;
}
.hero-slide.is-active .hero-content > *:nth-child(3) {
  animation-delay: 0.15s;
}
.hero-slide.is-active .hero-content > *:nth-child(4) {
  animation-delay: 0.22s;
}
.hero-slide.is-active .hero-content > *:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes heroContentPop {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-slide-status {
  display: flex;
  min-width: 190px;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-slide-status > b {
  color: var(--primary);
  font-size: 1rem;
}

.hero-progress {
  width: 112px;
  height: 3px;
  margin-left: 10px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  overflow: hidden;
}

.hero-progress > i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--primary);
  border-radius: inherit;
}

.hero-motion-cards {
  position: absolute;
  z-index: 4;
  top: 25%;
  right: max(3vw, calc((100vw - var(--container)) / 2));
  width: 240px;
  pointer-events: none;
}

.hero-motion-card {
  position: absolute;
  display: grid;
  min-width: 205px;
  grid-template-columns: 34px 1fr;
  gap: 0 10px;
  align-items: center;
  padding: 15px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  animation: heroCardFloat 5.2s ease-in-out infinite;
}

.hero-motion-card .icon,
.hero-motion-card > .status-dot {
  grid-row: 1 / 3;
  align-self: center;
}

.hero-motion-card .icon {
  width: 28px;
  height: 28px;
  padding: 5px;
  color: var(--dark);
  background: var(--primary);
  border-radius: 9px;
}

.hero-motion-card > .status-dot {
  position: relative;
  width: 13px;
  height: 13px;
  margin-left: 9px;
}

.hero-motion-card small,
.hero-motion-card strong {
  display: block;
  line-height: 1.35;
}

.hero-motion-card small {
  color: var(--muted);
  font-size: 0.62rem;
}

.hero-motion-card strong {
  color: var(--dark);
  font-size: 0.78rem;
}

.hero-motion-card-a {
  top: 0;
  right: 0;
}
.hero-motion-card-b {
  top: 110px;
  right: 54px;
  animation-delay: -2.1s;
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0.2deg);
  }
  50% {
    transform: translateY(-13px) rotate(-0.6deg);
  }
}

.survey-prompt-card > button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: var(--dark);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s var(--ease);
}

.survey-prompt-card > button:hover {
  color: var(--dark);
  background: var(--primary);
  transform: translateX(3px);
}

.finder-result {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.finder-survey-button {
  min-height: 46px;
  white-space: nowrap;
}

/* Security systems showcase */
.systems-section {
  background: var(--surface);
  overflow: hidden;
}

.systems-showcase {
  margin-top: 56px;
}

.systems-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  min-height: 620px;
  background: var(--dark);
  border: 1px solid rgba(9, 31, 47, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.systems-picture {
  position: relative;
  min-height: 620px;
  margin: 0;
  background: var(--dark-2);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.systems-picture::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(9, 31, 47, 0.18);
  pointer-events: none;
}

.systems-picture > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition:
    opacity 0.25s ease,
    transform 0.6s var(--ease);
}

.systems-picture.is-changing > img {
  opacity: 0.35;
  transform: scale(1.025);
}

.system-hotspot {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 7px;
  color: var(--white);
  background: rgba(9, 31, 47, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s var(--ease);
}

.system-hotspot::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(29, 188, 213, 0.42);
  border-radius: inherit;
  animation: hotspotPulse 2.2s ease-out infinite;
}

.system-hotspot span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 900;
}

.system-hotspot b {
  font-size: 0.67rem;
}

.system-hotspot:hover,
.system-hotspot.is-active {
  color: var(--dark);
  background: var(--primary);
  transform: translateY(-3px);
}

.system-hotspot:hover span,
.system-hotspot.is-active span {
  background: var(--white);
}

.system-hotspot-a {
  top: 22%;
  left: 14%;
}
.system-hotspot-b {
  top: 45%;
  right: 13%;
}
.system-hotspot-c {
  bottom: 22%;
  left: 37%;
}

@keyframes hotspotPulse {
  from {
    opacity: 0.8;
    transform: scale(0.92);
  }
  to {
    opacity: 0;
    transform: scale(1.14);
  }
}

.systems-live-tag {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 4px 10px;
  align-items: center;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(9, 31, 47, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
}

.systems-live-tag > .status-dot {
  grid-row: 1 / 3;
}

.systems-live-tag small,
.systems-live-tag strong {
  display: block;
}

.systems-live-tag small {
  color: #9fb5be;
  font-size: 0.6rem;
}
.systems-live-tag strong {
  font-size: 0.72rem;
}

.systems-detail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4.5vw, 60px);
  background: var(--white);
}

.systems-detail-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.systems-detail-top > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 13px;
  font-size: 0.76rem;
  font-weight: 900;
}

.systems-detail-top p {
  margin: 0;
  color: var(--primary-strong);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.systems-detail h3 {
  max-width: 420px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.systems-detail > p {
  color: var(--muted);
}

.systems-benefits {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 32px;
  list-style: none;
}

.systems-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
}

.systems-benefits .icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  color: var(--dark);
  background: var(--primary-soft);
  border-radius: 6px;
}

.systems-selector {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.system-option {
  display: grid;
  min-height: 112px;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 17px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.system-option > .icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  background: var(--primary-soft);
  border-radius: 10px;
}

.system-option b,
.system-option small {
  display: block;
}

.system-option b {
  font-size: 0.73rem;
  line-height: 1.35;
}
.system-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.59rem;
}

.system-option:hover,
.system-option.is-active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.system-option.is-active {
  background: var(--primary);
}

.system-option.is-active > .icon {
  background: var(--white);
}

.system-option.is-active small {
  color: rgba(9, 31, 47, 0.72);
}

/* BaseGuard video area */
.baseguard-section {
  color: var(--white);
  background: var(--dark);
  overflow: hidden;
}

.baseguard-section::before,
.baseguard-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 42px solid rgba(29, 188, 213, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.baseguard-section::before {
  top: -120px;
  left: -100px;
}
.baseguard-section::after {
  right: -110px;
  bottom: -130px;
}

.baseguard-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(45px, 6vw, 86px);
  align-items: center;
}

.baseguard-copy h2,
.baseguard-copy .lead {
  color: var(--white);
}

.baseguard-copy .lead {
  color: #c8d8de;
}

.baseguard-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0 34px;
}

.baseguard-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: center;
  padding: 13px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.baseguard-points > div > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 9px;
  font-size: 0.62rem;
  font-weight: 900;
}

.baseguard-points p,
.baseguard-points strong,
.baseguard-points small {
  display: block;
  margin: 0;
}

.baseguard-points strong {
  color: var(--white);
  font-size: 0.75rem;
}
.baseguard-points small {
  color: #91a8b2;
  font-size: 0.61rem;
}

.baseguard-media {
  min-width: 0;
}

.baseguard-video-frame {
  position: relative;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.baseguard-video-frame > video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #061722;
  border-radius: 15px;
}

.baseguard-play {
  position: absolute;
  z-index: 3;
  inset: 12px;
  display: grid;
  grid-template-columns: 68px auto;
  align-content: center;
  justify-content: center;
  gap: 0 16px;
  padding: 30px;
  color: var(--white);
  background: rgba(9, 31, 47, 0.72);
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  text-align: left;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    background-color 0.25s ease;
}

.baseguard-play:hover {
  background: rgba(9, 31, 47, 0.64);
}

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

.baseguard-play > span {
  display: grid;
  width: 68px;
  height: 68px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border: 7px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(29, 188, 213, 0.45);
  animation: videoPlayPulse 2.4s ease-out infinite;
}

.baseguard-play b,
.baseguard-play small {
  display: block;
}

.baseguard-play b {
  align-self: end;
  font-size: 1rem;
}
.baseguard-play small {
  align-self: start;
  color: #c6d8de;
  font-size: 0.67rem;
}

@keyframes videoPlayPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 188, 213, 0.48);
  }
  75%,
  100% {
    box-shadow: 0 0 0 22px rgba(29, 188, 213, 0);
  }
}

.baseguard-corner-card {
  position: absolute;
  right: -18px;
  bottom: -22px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: var(--dark);
  background: var(--primary);
  border: 8px solid var(--dark);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.baseguard-corner-card > .icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  background: var(--white);
  border-radius: 10px;
}

.baseguard-corner-card small,
.baseguard-corner-card strong {
  display: block;
}
.baseguard-corner-card small {
  font-size: 0.58rem;
}
.baseguard-corner-card strong {
  font-size: 0.7rem;
}

.video-chapters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.video-chapters button {
  display: grid;
  min-height: 72px;
  gap: 2px;
  align-content: center;
  padding: 11px 12px;
  color: #c7d7dd;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  cursor: pointer;
  text-align: left;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s var(--ease);
}

.video-chapters button:hover,
.video-chapters button.is-active {
  color: var(--dark);
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.video-chapters span {
  font-size: 0.58rem;
  font-weight: 850;
}
.video-chapters b {
  font-size: 0.67rem;
}

/* Clients */
.clients-section {
  color: var(--white);
  background: var(--dark-2);
  overflow: hidden;
}

.client-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 12px;
  margin-top: 55px;
}

.client-spotlight {
  display: grid;
  min-width: 0;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.client-spotlight > figure {
  position: relative;
  min-height: 590px;
  margin: 0;
  background: var(--dark);
  overflow: hidden;
}

.client-spotlight > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.28s ease,
    transform 0.65s var(--ease);
}

.client-spotlight.is-changing > figure > img {
  opacity: 0.4;
  transform: scale(1.035);
}

.client-spotlight figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(9, 31, 47, 0.88);
  border-radius: 8px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-spotlight-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 56px);
  color: var(--dark);
  background: var(--primary);
}

.client-identity {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.client-identity > span {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--dark);
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.client-identity p,
.client-identity small,
.client-identity strong {
  display: block;
  margin: 0;
}

.client-identity small {
  font-size: 0.66rem;
  font-weight: 750;
}
.client-identity strong {
  margin-top: 2px;
  font-size: 1.15rem;
}

.client-spotlight blockquote {
  margin: 0 0 23px;
  color: var(--dark);
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.client-spotlight-copy > p {
  color: rgba(9, 31, 47, 0.78);
  font-size: 0.82rem;
}

.client-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 24px 0 28px;
  background: rgba(9, 31, 47, 0.2);
  border: 1px solid rgba(9, 31, 47, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.client-metrics > div {
  min-width: 0;
  padding: 13px;
  background: rgba(255, 255, 255, 0.26);
}

.client-metrics small,
.client-metrics strong {
  display: block;
}
.client-metrics small {
  font-size: 0.55rem;
}
.client-metrics strong {
  margin-top: 3px;
  font-size: 0.67rem;
  line-height: 1.35;
}

.client-picker {
  display: grid;
  gap: 9px;
}

.client-switch {
  position: relative;
  display: grid;
  min-height: 102px;
  grid-template-columns: 47px 1fr 22px;
  gap: 12px;
  align-items: center;
  padding: 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease),
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.client-switch > span {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 900;
}

.client-switch p,
.client-switch b,
.client-switch small {
  display: block;
  margin: 0;
}
.client-switch b {
  font-size: 0.73rem;
}
.client-switch small {
  color: #8fa8b2;
  font-size: 0.59rem;
}

.client-switch > i {
  width: 22px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  overflow: hidden;
}

.client-switch > i::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: var(--primary);
}

.client-switch.is-active > i::after {
  animation: clientProgress 6.5s linear forwards;
}

.client-switch:hover,
.client-switch.is-active {
  background: rgba(255, 255, 255, 0.11);
  border-color: var(--primary);
  transform: translateX(-5px);
}

.client-switch.is-active small {
  color: #c6d8de;
}

@keyframes clientProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.client-logo-rail {
  margin-top: 42px;
  padding-block: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: none;
}

.client-logo-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: clientRail 25s linear infinite;
}

.client-logo-rail:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-track > span {
  display: flex;
  min-width: 185px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #c6d8de;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 750;
}

.client-logo-track b {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 8px;
  font-size: 0.61rem;
}

@keyframes clientRail {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}

/* Safety post portal */
.safety-portal-section {
  background: var(--surface);
  overflow: hidden;
}

.safety-portal-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
}

.safety-portal-heading h2 {
  max-width: 850px;
}

.safety-portal-heading > div:first-child > p:last-child {
  max-width: 730px;
  color: var(--muted);
}

.safety-heading-actions {
  display: grid;
  gap: 15px;
  justify-items: end;
}

.safety-heading-actions > span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--muted);
}

.safety-heading-actions > span b {
  color: var(--dark);
  font-size: 1.5rem;
}

.safety-heading-actions > span small {
  font-size: 0.63rem;
  font-weight: 700;
}

.latest-safety-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 48px 0 14px;
  padding: 14px 17px;
  color: var(--dark);
  background: var(--primary);
  border: 2px solid var(--dark);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.latest-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-right: 17px;
  border-right: 1px solid rgba(9, 31, 47, 0.22);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.latest-safety-strip > button {
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.latest-safety-strip b,
.latest-safety-strip small {
  display: block;
}
.latest-safety-strip b {
  overflow: hidden;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.latest-safety-strip small {
  font-size: 0.58rem;
}
.latest-safety-strip > .icon {
  transition: transform 0.2s var(--ease);
}
.latest-safety-strip:hover > .icon {
  transform: translateX(5px);
}

.safety-controls {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.7fr) minmax(
      155px,
      0.45fr
    );
  gap: 12px;
  align-items: center;
  margin-bottom: 31px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.safety-search {
  position: relative;
  display: block;
}

.safety-search > .icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 14px;
  color: var(--muted);
  transform: translateY(-50%);
}

.safety-search input {
  padding-left: 43px;
  background: var(--surface);
}

.safety-category-filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.safety-category-filters::-webkit-scrollbar {
  display: none;
}

.safety-category-filters button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 800;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s var(--ease);
}

.safety-category-filters button:hover,
.safety-category-filters button.is-active {
  color: var(--dark);
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.safety-type-filter {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
}

.safety-type-filter select {
  min-height: 40px;
  padding-inline: 10px 30px;
  font-size: 0.67rem;
}

.safety-feed {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  min-height: 280px;
}

.safety-post-card {
  position: relative;
  display: flex;
  min-width: 0;
  grid-column: span 4;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transform-origin: center bottom;
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.safety-post-card.is-featured {
  grid-column: span 8;
}

.safety-post-card.is-new {
  animation: safetyPostPop 0.72s var(--ease) both;
}

@keyframes safetyPostPop {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.safety-post-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.safety-post-media {
  position: relative;
  height: 260px;
  background: var(--dark);
  overflow: hidden;
}

.safety-post-card.is-featured .safety-post-media {
  height: 360px;
}

.safety-post-media > img,
.safety-post-media > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s var(--ease),
    opacity 0.3s ease;
}

.safety-post-card:hover .safety-post-media > img {
  transform: scale(1.045);
}

.safety-post-media.is-flyer > img {
  object-position: top center;
}

.safety-media-badges {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  left: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

.safety-media-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(9, 31, 47, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.safety-media-badges .is-latest {
  color: var(--dark);
  background: var(--primary);
  border-color: var(--primary);
}

.safety-open-media {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.safety-open-media > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border: 7px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transform: scale(0.92);
  transition:
    transform 0.25s var(--ease),
    background-color 0.25s ease;
}

.safety-open-media:hover > span {
  background: var(--white);
  transform: scale(1.05);
}

.safety-post-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.safety-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--primary-strong);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.safety-post-meta time {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.safety-post-body h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
}

.safety-post-card.is-featured .safety-post-body h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
}

.safety-post-body > p {
  color: var(--muted);
  font-size: 0.79rem;
}

.safety-post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.safety-post-actions > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: var(--dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 850;
}

.safety-post-actions > button:first-child {
  color: var(--primary-strong);
}

.safety-post-actions > button .icon {
  transition: transform 0.2s var(--ease);
}

.safety-post-actions > button:hover .icon {
  transform: translateX(3px);
}

.safety-empty {
  display: grid;
  min-height: 290px;
  place-items: center;
  align-content: center;
  padding: 40px;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 18px;
  text-align: center;
}

.safety-empty > .icon {
  width: 48px;
  height: 48px;
  padding: 11px;
  color: var(--dark);
  background: var(--primary);
  border-radius: 14px;
}

.safety-empty h3 {
  margin: 14px 0 6px;
}
.safety-empty p {
  margin: 0;
}

.safety-load-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.publisher-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding: 22px 25px;
  color: var(--white);
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.publisher-note > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  align-items: center;
}

.publisher-note > div > .icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--dark);
  background: var(--primary);
  border-radius: 12px;
}

.publisher-note strong,
.publisher-note small {
  display: block;
}
.publisher-note strong {
  font-size: 0.8rem;
}
.publisher-note small {
  max-width: 760px;
  color: #9fb4bd;
  font-size: 0.66rem;
  line-height: 1.55;
}
.publisher-note .text-link {
  color: var(--primary);
  white-space: nowrap;
}

/* Multi-step survey modal */
.survey-modal-shell {
  width: min(1180px, calc(100vw - 32px));
  max-height: min(880px, calc(100vh - 30px));
  padding: 0;
  overflow: auto;
}

.survey-modal-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  min-height: 700px;
}

.survey-modal-intro {
  position: relative;
  padding: clamp(34px, 4vw, 55px);
  color: var(--white);
  background: var(--dark);
  overflow: hidden;
}

.survey-intro-label {
  display: inline-flex;
  padding: 7px 9px;
  color: var(--dark);
  background: var(--primary);
  border-radius: 8px;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.survey-modal-intro h2 {
  margin-top: 20px;
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.survey-modal-intro > p {
  color: #a9bec7;
  font-size: 0.78rem;
}

.survey-modal-intro figure {
  position: relative;
  height: 290px;
  margin: 30px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  overflow: hidden;
}

.survey-modal-intro figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.survey-modal-intro figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: var(--white);
  background: rgba(9, 31, 47, 0.88);
  border-radius: 9px;
  font-size: 0.62rem;
  font-weight: 800;
}

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

.survey-benefits span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  color: #c5d5dc;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.59rem;
}

.survey-benefits .icon {
  color: var(--primary);
}

.survey-form-area {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(32px, 4.5vw, 58px);
  background: var(--white);
}

.survey-stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 44px 42px 0;
}

.survey-stepper button {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 9px;
  align-items: center;
  padding: 10px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: left;
}

.survey-stepper button > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--dark);
  background: var(--white);
  border-radius: 9px;
  font-size: 0.6rem;
  font-weight: 900;
}

.survey-stepper button b {
  font-size: 0.65rem;
}

.survey-stepper button.is-active,
.survey-stepper button.is-complete {
  color: var(--dark);
  background: var(--primary-soft);
  border-color: var(--primary);
}

.survey-stepper button.is-active > span,
.survey-stepper button.is-complete > span {
  background: var(--primary);
}

.survey-form {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
}

.survey-step {
  animation: surveyStepIn 0.42s var(--ease) both;
}

@keyframes surveyStepIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.survey-step-kicker {
  margin-bottom: 7px;
  color: var(--primary-strong);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.survey-step h3 {
  margin-bottom: 26px;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.survey-fields {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.survey-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: auto;
  padding-top: 32px;
}

.survey-form-actions > span {
  margin-right: auto;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
}

.survey-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.survey-success {
  display: grid;
  flex: 1;
  align-content: center;
  justify-items: start;
  animation: surveyStepIn 0.45s var(--ease) both;
}

.survey-success > span {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.survey-success > span .icon {
  width: 34px;
  height: 34px;
}
.survey-success .eyebrow {
  margin-top: 26px;
}
.survey-success h3 {
  max-width: 540px;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}
.survey-success > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

/* Publisher modal */
.publisher-modal-shell {
  width: min(1180px, calc(100vw - 32px));
  max-height: min(900px, calc(100vh - 30px));
  padding: 0;
  overflow: auto;
}

.publisher-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  min-height: 760px;
}

.publisher-intro {
  padding: clamp(34px, 4vw, 52px);
  color: var(--white);
  background: var(--dark);
}

.publisher-intro h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 3.7vw, 3.7rem);
}

.publisher-intro > p:not(.eyebrow):not(.publisher-warning) {
  color: #a9bec7;
  font-size: 0.79rem;
}

.publisher-capabilities {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.publisher-capabilities span {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #d4e1e5;
  font-size: 0.7rem;
  font-weight: 700;
}

.publisher-capabilities .icon {
  color: var(--primary);
}

.publisher-warning {
  display: flex;
  gap: 9px;
  padding: 13px;
  color: #b9cbd2;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  font-size: 0.64rem;
  line-height: 1.5;
}

.publisher-warning .icon {
  color: var(--primary);
}

.publisher-workspace {
  padding: clamp(28px, 4vw, 50px);
  background: var(--surface);
}

.publisher-form {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.publisher-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.publisher-form-grid > label {
  display: grid;
  gap: 7px;
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.publisher-file-field input,
.publisher-poster-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.publisher-file-field > span,
.publisher-file-field > span small {
  display: block;
}

.publisher-file-field > span small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 550;
}

.publisher-file-field > b {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 14px;
  color: var(--dark);
  background: var(--primary-soft);
  border: 1px dashed var(--primary);
  border-radius: 11px;
  cursor: pointer;
}

.publisher-file-field:focus-within > b {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.publisher-or {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.publisher-or::before,
.publisher-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.publisher-check {
  display: flex !important;
  flex-direction: row !important;
  gap: 9px !important;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.publisher-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--primary);
}

.publisher-poster-field {
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.publisher-preview {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 55px 1fr;
  gap: 14px;
  align-items: center;
  margin: 18px 0;
  padding: 22px;
  background: var(--dark);
  border-radius: 14px;
  overflow: hidden;
}

.publisher-preview > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 14px;
}

.publisher-preview p,
.publisher-preview strong,
.publisher-preview small {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0;
}
.publisher-preview strong {
  color: var(--white);
  font-size: 0.8rem;
}
.publisher-preview small {
  color: #91a8b2;
  font-size: 0.62rem;
}

.publisher-preview img,
.publisher-preview video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.publisher-manager {
  margin-top: 22px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.publisher-manager > div:first-child h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}
.publisher-manager > div:first-child p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.66rem;
}

.publisher-post-list {
  display: grid;
  gap: 8px;
}

.publisher-list-empty {
  margin: 0;
  padding: 12px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 9px;
  font-size: 0.65rem;
}

.publisher-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.publisher-list-item strong,
.publisher-list-item small {
  display: block;
}
.publisher-list-item strong {
  overflow: hidden;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.publisher-list-item small {
  color: var(--muted);
  font-size: 0.58rem;
}
.publisher-list-item button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}
.publisher-list-item button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Floating site survey control */
.floating-survey {
  padding-inline: 16px 18px;
}

.floating-survey .icon {
  color: var(--primary);
}

/* Responsive additions */
@media (max-width: 1180px) {
  .hero-motion-cards {
    display: none;
  }
  .systems-stage {
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  }
  .systems-selector {
    grid-template-columns: repeat(3, 1fr);
  }
  .client-showcase {
    grid-template-columns: 1fr;
  }
  .client-picker {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .client-switch {
    min-width: 190px;
  }
  .safety-controls {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  }
  .safety-type-filter {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(160px, 220px);
    align-items: center;
    justify-content: end;
  }
}

@media (max-width: 960px) {
  .hero-slide-status {
    min-width: 160px;
  }
  .hero-progress {
    width: 82px;
  }
  .finder-result {
    grid-template-columns: auto 1fr;
  }
  .finder-survey-button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .systems-stage {
    grid-template-columns: 1fr;
  }
  .systems-picture,
  .systems-picture > img {
    min-height: 520px;
  }
  .systems-detail {
    min-height: 460px;
  }
  .baseguard-shell {
    grid-template-columns: 1fr;
  }
  .baseguard-copy {
    max-width: 760px;
  }
  .client-spotlight {
    grid-template-columns: 1fr 1fr;
  }
  .safety-portal-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .safety-heading-actions {
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: start;
    justify-items: start;
  }
  .safety-post-card {
    grid-column: span 6;
  }
  .safety-post-card.is-featured {
    grid-column: span 12;
  }
  .survey-modal-layout,
  .publisher-layout {
    grid-template-columns: 1fr;
  }
  .survey-modal-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 20px 30px;
  }
  .survey-modal-intro .survey-intro-label,
  .survey-modal-intro h2,
  .survey-modal-intro > p,
  .survey-benefits {
    grid-column: 1;
  }
  .survey-modal-intro figure {
    grid-column: 2;
    grid-row: 1 / 5;
    height: 100%;
    min-height: 300px;
    margin: 0;
  }
  .publisher-intro {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .page-progress {
    height: 2px;
  }
  .hero-slide-status {
    display: none;
  }
  .hero-controls {
    justify-content: space-between;
  }
  .slider-arrows {
    order: 1;
  }
  .hero-pause {
    order: 2;
  }
  .response-card {
    width: min(460px, calc(100% - 28px));
  }
  .systems-picture,
  .systems-picture > img {
    min-height: 450px;
  }
  .systems-live-tag {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
  .systems-selector {
    grid-template-columns: 1fr 1fr;
  }
  .baseguard-points {
    grid-template-columns: 1fr;
  }
  .baseguard-corner-card {
    display: none;
  }
  .video-chapters {
    grid-template-columns: 1fr 1fr;
  }
  .client-spotlight {
    grid-template-columns: 1fr;
  }
  .client-spotlight > figure {
    min-height: 430px;
  }
  .client-metrics {
    grid-template-columns: 1fr;
  }
  .safety-controls {
    grid-template-columns: 1fr;
  }
  .safety-type-filter {
    grid-column: auto;
    grid-template-columns: auto 1fr;
    justify-content: stretch;
  }
  .safety-post-card,
  .safety-post-card.is-featured {
    grid-column: span 12;
  }
  .safety-post-card.is-featured .safety-post-media,
  .safety-post-media {
    height: 300px;
  }
  .publisher-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .survey-modal-intro {
    display: block;
  }
  .survey-modal-intro figure {
    height: 260px;
    margin: 24px 0 18px;
  }
  .survey-stepper {
    margin-right: 0;
  }
  .survey-stepper button {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .survey-form-actions {
    flex-wrap: wrap;
  }
  .survey-form-actions > span {
    width: 100%;
    order: -1;
  }
  .publisher-form-grid {
    grid-template-columns: 1fr;
  }
  .publisher-form-grid .field-full {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .response-card {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 12px;
  }
  .response-card strong {
    font-size: 0.78rem;
  }
  .response-card small {
    font-size: 0.61rem;
  }
  .response-icon {
    width: 46px;
    height: 46px;
  }
  .survey-prompt-card > button {
    width: 40px;
    height: 40px;
  }
  .system-hotspot b {
    display: none;
  }
  .system-hotspot {
    padding-right: 7px;
  }
  .system-hotspot-a {
    left: 8%;
  }
  .system-hotspot-b {
    right: 7%;
  }
  .system-hotspot-c {
    left: 28%;
  }
  .systems-selector {
    grid-template-columns: 1fr;
  }
  .system-option {
    min-height: 82px;
  }
  .baseguard-video-frame {
    padding: 7px;
    border-radius: 16px;
  }
  .baseguard-video-frame > video,
  .baseguard-play {
    border-radius: 10px;
  }
  .baseguard-play {
    inset: 7px;
    grid-template-columns: 55px auto;
    gap: 12px;
  }
  .baseguard-play > span {
    width: 55px;
    height: 55px;
    border-width: 5px;
  }
  .baseguard-play b {
    font-size: 0.8rem;
  }
  .baseguard-play small {
    font-size: 0.57rem;
  }
  .video-chapters {
    grid-template-columns: 1fr;
  }
  .client-spotlight > figure {
    min-height: 360px;
  }
  .client-spotlight-copy {
    padding: 28px 23px;
  }
  .client-picker {
    grid-template-columns: repeat(5, 175px);
  }
  .client-switch {
    min-width: 175px;
  }
  .safety-heading-actions {
    grid-template-columns: 1fr;
  }
  .safety-heading-actions .button {
    width: 100%;
  }
  .latest-safety-strip {
    grid-template-columns: 1fr auto;
  }
  .latest-label {
    grid-column: 1 / -1;
    padding: 0 0 9px;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 31, 47, 0.2);
  }
  .safety-controls {
    padding: 10px;
  }
  .safety-post-media,
  .safety-post-card.is-featured .safety-post-media {
    height: 250px;
  }
  .survey-form-area,
  .publisher-workspace {
    padding: 25px 18px;
  }
  .survey-stepper button b {
    display: none;
  }
  .survey-stepper button {
    padding: 7px;
  }
  .survey-form-actions .button {
    width: 100%;
  }
  .survey-back {
    order: 3;
  }
  .publisher-form {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion-card,
  .system-hotspot::before,
  .baseguard-play > span,
  .client-logo-track,
  .client-switch.is-active > i::after {
    animation: none !important;
  }
  .hero-slide.is-active > img,
  .systems-picture,
  .baseguard-video-frame,
  .client-spotlight {
    transform: none !important;
  }
}

@keyframes heroProgressRun {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
