:root {
  --ar-navy: #0e1b2b;
  --ar-system-navy: #14273d;
  --ar-route-teal: #11a7a5;
  --ar-route-teal-dark: #0d8f8d;
  --ar-signal-cyan: #38c4d6;
  --ar-clean-ice: #f4f8fa;
  --ar-structure-mist: #e5edf1;
  --ar-slate: #566678;
  --ar-charcoal: #202a35;
  --ar-white: #ffffff;
  --ar-ink-soft: #758497;
  --ar-line: rgba(14, 27, 43, 0.12);
  --ar-shadow: 0 20px 60px rgba(14, 27, 43, 0.12);
  --ar-shadow-soft: 0 14px 38px rgba(14, 27, 43, 0.09);
  --ar-radius-control: 8px;
  --ar-radius-card: 12px;
  --ar-font: "DM Sans", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--ar-charcoal);
  background: var(--ar-white);
  font-family: var(--ar-font);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  overflow-x: clip;
}

body.modal-is-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

:focus-visible {
  outline: 3px solid rgba(17, 167, 165, 0.48);
  outline-offset: 3px;
}

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 12px 16px;
  margin: 12px;
  clip: auto;
  color: var(--ar-white);
  background: var(--ar-navy);
  border-radius: var(--ar-radius-control);
}

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

.section-pad {
  padding: 96px 0;
}

.section-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--ar-route-teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head.compact {
  display: block;
  max-width: 900px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ar-navy);
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  color: var(--ar-white);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 800;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}

h3 {
  font-size: 1.16rem;
  font-weight: 800;
}

.section-head p,
.demo-grid > div > p,
.video-grid p {
  margin: 0;
  color: var(--ar-slate);
  font-size: 1.06rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--ar-radius-control);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ar-white);
  background: var(--ar-route-teal);
  border-color: var(--ar-route-teal);
}

.button-primary:hover:not(:disabled) {
  background: var(--ar-route-teal-dark);
  border-color: var(--ar-route-teal-dark);
}

.button-secondary {
  color: var(--ar-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.42);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 237, 241, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  z-index: 3;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 194px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ar-navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 10px;
  border-radius: var(--ar-radius-control);
}

.site-nav a:hover {
  color: var(--ar-route-teal);
  background: var(--ar-clean-ice);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: var(--ar-white);
  background: var(--ar-navy);
}

.site-nav .nav-cta:hover {
  color: var(--ar-white);
  background: var(--ar-route-teal);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
  padding: 3px;
  background: var(--ar-clean-ice);
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-control);
}

.lang-button {
  min-width: 38px;
  min-height: 34px;
  padding: 6px 9px;
  color: var(--ar-slate);
  font-size: 0.8rem;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.lang-button:hover {
  color: var(--ar-navy);
}

.lang-button.is-active {
  color: var(--ar-white);
  background: var(--ar-navy);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  padding: 0;
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-control);
  background: var(--ar-white);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--ar-navy);
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  z-index: 40;
  inset: 78px 0 0;
  background: rgba(14, 27, 43, 0.36);
  backdrop-filter: blur(2px);
  touch-action: pan-y;
}

.hero {
  min-height: clamp(580px, 82svh, 780px);
  display: flex;
  align-items: stretch;
  color: var(--ar-white);
  background-image:
    linear-gradient(
      90deg,
      rgba(14, 27, 43, 0.98) 0%,
      rgba(14, 27, 43, 0.92) 45%,
      rgba(14, 27, 43, 0.3) 100%
    ),
    url("../assets/hero/pudu-robot-lineup-original.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.hero-grid {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}

.hero-copy {
  max-width: 800px;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 48px 0 0;
}

.hero-metrics div {
  padding-left: 16px;
  border-left: 2px solid rgba(17, 167, 165, 0.8);
}

.hero-metrics dt {
  color: var(--ar-white);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.route-panel {
  position: relative;
  min-height: 360px;
  align-self: end;
}

.route-node {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--ar-route-teal);
  border: 4px solid var(--ar-white);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(17, 167, 165, 0.14);
}

.route-node-start {
  top: 24%;
  left: 12%;
}

.route-node-mid {
  top: 52%;
  left: 50%;
}

.route-node-end {
  right: 12%;
  bottom: 16%;
}

.route-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, rgba(17, 167, 165, 0.2), var(--ar-signal-cyan));
  border-radius: 99px;
  transform-origin: left center;
}

.route-line-a {
  top: 30%;
  left: 17%;
  width: 43%;
  transform: rotate(30deg);
}

.route-line-b {
  top: 56%;
  left: 53%;
  width: 35%;
  transform: rotate(26deg);
}

.route-label {
  position: absolute;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(14, 27, 43, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.route-label-a {
  top: 12%;
  left: 2%;
}

.route-label-b {
  top: 39%;
  left: 40%;
}

.route-label-c {
  right: 2%;
  bottom: 0;
}

.partner-strip {
  padding: 64px 0;
  background: var(--ar-clean-ice);
  border-bottom: 1px solid var(--ar-structure-mist);
}

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

.brand-grid article,
.product-card,
.industry-grid article,
.demo-form,
.faq-item {
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-card);
  background: var(--ar-white);
}

.brand-grid article {
  padding: 24px;
}

.brand-grid span {
  display: block;
  color: var(--ar-navy);
  font-size: 1.15rem;
  font-weight: 800;
}

.brand-grid p {
  margin: 10px 0 0;
  color: var(--ar-slate);
}

.products {
  background: var(--ar-white);
  scroll-margin-top: 80px;
}

.catalog-filters {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) auto;
  gap: 18px;
  align-items: end;
  padding: 20px;
  margin-bottom: 12px;
  background: var(--ar-clean-ice);
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-card);
}

.filter-group {
  min-width: 0;
}

.filter-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ar-navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.filter-chip,
.filter-reset {
  min-height: 40px;
  padding: 8px 12px;
  color: var(--ar-navy);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  background: var(--ar-white);
  border: 1px solid var(--ar-structure-mist);
  border-radius: 999px;
}

.filter-chip:hover,
.filter-reset:hover:not(:disabled) {
  border-color: rgba(17, 167, 165, 0.55);
}

.filter-chip.is-active {
  color: var(--ar-white);
  background: var(--ar-navy);
  border-color: var(--ar-navy);
}

.filter-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ar-route-teal-dark);
  border-radius: var(--ar-radius-control);
}

.catalog-status {
  min-height: 24px;
  margin: 0 0 16px;
  color: var(--ar-slate);
  font-size: 0.9rem;
  font-weight: 700;
}

.catalog-empty {
  padding: 30px;
  margin: 16px 0 0;
  color: var(--ar-slate);
  text-align: center;
  background: var(--ar-clean-ice);
  border: 1px dashed rgba(14, 27, 43, 0.22);
  border-radius: var(--ar-radius-card);
}

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

.product-card {
  position: relative;
  min-width: 0;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(17, 167, 165, 0.55);
  box-shadow: var(--ar-shadow-soft);
  transform: translateY(-2px);
}

.product-card:focus-within {
  outline: 3px solid rgba(17, 167, 165, 0.42);
  outline-offset: 3px;
}

.product-card-action {
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: inherit;
}

.product-card-action:focus-visible {
  outline: 0;
}

.product-image {
  position: relative;
  height: 230px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(56, 196, 214, 0.09), transparent 48%),
    #f5f8f9;
  border-bottom: 1px solid var(--ar-structure-mist);
}

.product-image img {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.product-body {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-brand,
.modal-brand {
  margin: 0 0 8px;
  color: var(--ar-route-teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1.22rem;
}

.product-description {
  margin: 11px 0 0;
  color: var(--ar-slate);
  font-size: 0.92rem;
}

.product-highlights {
  display: grid;
  gap: 7px;
  padding: 14px 0 0;
  margin: 14px 0 0;
  list-style: none;
  border-top: 1px solid var(--ar-structure-mist);
}

.product-highlights li {
  color: var(--ar-slate);
  font-size: 0.82rem;
  line-height: 1.35;
}

.product-highlights strong {
  color: var(--ar-navy);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--ar-route-teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.industries {
  background: var(--ar-clean-ice);
}

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

.industry-grid article {
  min-width: 0;
  overflow: hidden;
}

.industry-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dfe8eb;
}

.industry-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(14, 27, 43, 0.01), rgba(14, 27, 43, 0.09));
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96) brightness(0.99);
  transition: transform 220ms ease, filter 220ms ease;
}

.industry-grid article:hover .industry-image img {
  filter: saturate(0.94) contrast(0.98) brightness(1);
  transform: scale(1.015);
}

.industry-body {
  padding: 20px;
}

.industry-body p {
  min-height: 72px;
  margin: 8px 0 0;
  color: var(--ar-slate);
}

.process {
  background: var(--ar-white);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 31px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--ar-route-teal), var(--ar-signal-cyan));
}

.process-steps li {
  position: relative;
  min-width: 0;
  padding: 0 5px;
}

.process-steps span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--ar-white);
  font-weight: 800;
  background: var(--ar-navy);
  border: 4px solid var(--ar-white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ar-structure-mist);
}

.process-steps h3 {
  font-size: 1.02rem;
  line-height: 1.18;
}

.process-steps p {
  margin: 10px 0 0;
  color: var(--ar-slate);
  font-size: 0.9rem;
}

.video-band {
  color: var(--ar-white);
  background: var(--ar-navy);
}

.video-grid,
.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.video-band h2,
.video-band p {
  color: var(--ar-white);
}

.video-band p {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.75);
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: #07111d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ar-radius-card);
  box-shadow: var(--ar-shadow);
}

.video-link {
  min-height: 320px;
  display: block;
  color: var(--ar-white);
}

.video-link img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
  opacity: 0.67;
  transition: transform 220ms ease, opacity 220ms ease;
}

.video-link:hover img {
  opacity: 0.78;
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  inset: auto 24px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(14, 27, 43, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--ar-radius-control);
  backdrop-filter: blur(10px);
}

.play-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--ar-route-teal);
  border-radius: 50%;
}

.play-mark::before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--ar-white);
}

.video-overlay strong,
.video-overlay small {
  display: block;
}

.video-overlay strong {
  color: var(--ar-white);
}

.video-overlay small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.faq {
  background: var(--ar-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 112px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: var(--ar-navy);
  text-align: left;
  background: var(--ar-white);
  border: 0;
}

.faq-item button:hover {
  color: var(--ar-route-teal-dark);
  background: var(--ar-clean-ice);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--ar-slate);
}

.demo {
  scroll-margin-top: 78px;
  background:
    linear-gradient(135deg, rgba(17, 167, 165, 0.08), rgba(56, 196, 214, 0) 48%),
    var(--ar-clean-ice);
}

.demo-grid {
  align-items: start;
}

.demo-grid.is-form-hidden {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.demo-grid.is-form-hidden [data-contact-phone] {
  font-size: 1.18rem;
}

.demo-grid > *,
.video-grid > * {
  min-width: 0;
}

.demo-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.demo-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ar-navy);
  font-weight: 700;
}

.demo-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--ar-route-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(17, 167, 165, 0.13);
}

.direct-contact {
  display: grid;
  gap: 4px;
  margin-top: 30px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-card);
}

.direct-contact p {
  margin: 0 0 3px;
  color: var(--ar-slate);
}

.direct-contact a {
  width: fit-content;
  color: var(--ar-navy);
  font-weight: 800;
}

.direct-contact a:hover {
  color: var(--ar-route-teal-dark);
}

.demo-form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  justify-self: stretch;
  padding: 26px;
  box-shadow: var(--ar-shadow);
}

.field {
  min-width: 0;
}

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

label {
  display: block;
  margin: 0 0 8px;
  color: var(--ar-navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  color: var(--ar-navy);
  background: var(--ar-white);
  border: 1px solid #cbd8de;
  border-radius: var(--ar-radius-control);
}

input,
select {
  padding: 0 13px;
}

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

input:hover,
textarea:hover {
  border-color: #aebfc7;
}

input:focus,
textarea:focus {
  border-color: var(--ar-route-teal);
}

input[readonly] {
  color: var(--ar-slate);
  background: var(--ar-clean-ice);
}

.required-note {
  margin: 0;
  color: var(--ar-slate);
  font-size: 0.8rem;
}

.form-status {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--ar-route-teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ar-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(150px, 0.35fr) minmax(260px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--ar-white);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 190px;
}

.footer-brand p {
  max-width: 360px;
  margin: 12px 0 0;
}

.footer-brand .footer-tagline {
  color: var(--ar-white);
  font-size: 1.08rem;
  font-weight: 800;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer a {
  width: fit-content;
  color: var(--ar-white);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--ar-signal-cyan);
}

.footer-contact dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.footer-contact dl div {
  min-width: 0;
}

.footer-contact dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.footer-bottom {
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 17, 29, 0.78);
  backdrop-filter: blur(7px);
}

.robot-modal {
  position: relative;
  width: min(100%, 1120px);
  max-height: calc(100dvh - 48px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--ar-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.modal-close {
  position: sticky;
  z-index: 6;
  top: 14px;
  float: right;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 14px 14px -58px 0;
  color: var(--ar-navy);
  font-size: 1.7rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--ar-structure-mist);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(14, 27, 43, 0.12);
}

.modal-close:hover {
  color: var(--ar-white);
  background: var(--ar-navy);
}

.modal-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  min-height: 390px;
  background: var(--ar-clean-ice);
}

.modal-image {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 46px;
  background:
    radial-gradient(circle at 50% 45%, rgba(56, 196, 214, 0.13), transparent 48%),
    #f3f7f8;
}

.modal-image img {
  width: 100%;
  height: 100%;
  max-height: 310px;
  object-fit: contain;
  object-position: center;
}

.modal-summary {
  padding: 52px 60px 44px 42px;
  background: var(--ar-white);
}

.modal-summary h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.modal-description {
  margin: 16px 0 0;
  color: var(--ar-slate);
  font-size: 1.04rem;
}

.modal-recommendations {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
}

.modal-recommendations div {
  padding-left: 14px;
  border-left: 3px solid var(--ar-route-teal);
}

.modal-recommendations dt,
.modal-price span {
  color: var(--ar-ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modal-recommendations dd {
  margin: 3px 0 0;
  color: var(--ar-navy);
  font-weight: 700;
}

.modal-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
  margin-top: 18px;
  background: var(--ar-clean-ice);
  border-radius: var(--ar-radius-control);
}

.modal-price strong {
  color: var(--ar-navy);
  font-size: 1.2rem;
}

.spec-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
}

.spec-group {
  min-width: 0;
  padding: 22px;
  background: var(--ar-clean-ice);
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-card);
}

.spec-group h3 {
  margin-bottom: 15px;
}

.spec-group dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.46fr) minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid rgba(14, 27, 43, 0.1);
}

.spec-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.spec-row:last-child {
  padding-bottom: 0;
}

.spec-row dt {
  color: var(--ar-slate);
  font-size: 0.82rem;
  font-weight: 700;
}

.spec-row dd {
  margin: 0;
  color: var(--ar-navy);
  font-size: 0.88rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px 30px;
  border-top: 1px solid var(--ar-structure-mist);
}

.modal-footer > div {
  min-width: 0;
}

.modal-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ar-route-teal-dark);
  font-weight: 800;
}

.modal-footer p {
  margin: 6px 0 0;
  color: var(--ar-slate);
  font-size: 0.8rem;
}

.modal-footer .button {
  flex: 0 0 auto;
}

.legal-page {
  min-height: 100vh;
  background: var(--ar-clean-ice);
}

.legal-header {
  background: var(--ar-white);
  border-bottom: 1px solid var(--ar-structure-mist);
}

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

.legal-header .language-switcher {
  margin-left: auto;
}

.legal-main {
  padding: 72px 0 96px;
}

.legal-article {
  max-width: 900px;
  padding: 48px;
  margin-inline: auto;
  background: var(--ar-white);
  border: 1px solid var(--ar-structure-mist);
  border-radius: 16px;
  box-shadow: var(--ar-shadow-soft);
}

.legal-back {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--ar-route-teal-dark);
  font-weight: 800;
}

.legal-article > h1 {
  max-width: none;
  color: var(--ar-navy);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ar-slate);
  font-size: 1.08rem;
}

.legal-updated {
  margin: 14px 0 0;
  color: var(--ar-ink-soft);
  font-size: 0.84rem;
}

.legal-sections {
  display: grid;
  gap: 30px;
  margin-top: 34px;
}

.legal-section {
  padding-top: 28px;
  border-top: 1px solid var(--ar-structure-mist);
}

.legal-section h2 {
  font-size: 1.45rem;
}

.legal-section p {
  margin: 12px 0 0;
  color: var(--ar-slate);
}

@media (min-width: 1101px) {
  .process-steps h3 {
    white-space: nowrap;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    font-size: 0.86rem;
  }

  .site-nav a {
    padding-inline: 8px;
  }

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

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

@media (max-width: 1024px) {
  .catalog-filters {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .filter-reset {
    width: fit-content;
  }

  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .process-steps::before {
    display: none;
  }

  .process-steps h3 {
    font-size: 1.08rem;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .section-pad {
    padding: 72px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    z-index: 4;
    top: 78px;
    right: 14px;
    left: 14px;
    max-height: calc(100svh - 96px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px;
    background: var(--ar-white);
    border: 1px solid var(--ar-structure-mist);
    border-radius: var(--ar-radius-card);
    box-shadow: var(--ar-shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    justify-content: space-between;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .language-switcher {
    width: 100%;
    justify-content: stretch;
    margin-left: 0;
  }

  .lang-button {
    flex: 1;
  }

  .section-head,
  .hero-grid,
  .video-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
    background-position: 60% bottom;
  }

  .hero-grid {
    align-content: start;
    padding-top: 64px;
  }

  .route-panel {
    min-height: 170px;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-heading {
    position: static;
  }

  .modal-hero {
    grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1fr);
  }

  .modal-image {
    padding: 32px;
  }

  .modal-summary {
    padding: 52px 48px 36px 30px;
  }
}

@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    min-height: 520px;
  }

  .spec-groups {
    grid-template-columns: 1fr;
  }

  .modal-hero {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 260px;
    padding: 28px;
  }

  .modal-image img {
    max-height: 220px;
  }

  .modal-summary {
    padding: 28px;
  }

  .modal-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .modal-footer .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, 1280px);
  }

  .section-pad {
    padding: 54px 0;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 24px;
  }

  .section-head p,
  .demo-grid > div > p,
  .video-grid p {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .section-kicker,
  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .header-inner,
  .legal-header-inner {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
    max-height: calc(100svh - 86px);
  }

  .nav-overlay {
    inset-block-start: 70px;
  }

  .brand img,
  .legal-header .brand img {
    width: 162px;
  }

  .hero {
    min-height: calc(100svh - 70px);
    background-image:
      linear-gradient(
        180deg,
        rgba(14, 27, 43, 0.98) 0%,
        rgba(14, 27, 43, 0.9) 55%,
        rgba(14, 27, 43, 0.58) 100%
      ),
      url("../assets/hero/pudu-robot-lineup-original.webp");
    background-position: 58% bottom;
  }

  .hero-grid {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics {
    gap: 8px;
    margin-top: 28px;
  }

  .hero-metrics div {
    padding-left: 10px;
  }

  .hero-metrics dt {
    font-size: 1.85rem;
  }

  .hero-metrics dd {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .route-panel {
    display: none;
  }

  .partner-strip {
    padding: 34px 0 40px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .brand-grid article {
    display: grid;
    grid-template-columns: minmax(90px, 0.34fr) minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .brand-grid span {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .brand-grid p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .catalog-filters {
    gap: 14px;
    padding: 15px;
  }

  .filter-options {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2px 2px 7px;
    margin-inline: -2px;
    scrollbar-width: thin;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

  .product-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

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

  .product-image {
    height: 220px;
  }

  .product-description {
    font-size: 0.9rem;
  }

  .industry-body p {
    min-height: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-steps li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 10px;
    align-items: start;
    padding: 13px 0;
    border-bottom: 1px solid var(--ar-structure-mist);
  }

  .process-steps li:last-child {
    border-bottom: 0;
  }

  .process-steps span {
    width: 36px;
    height: 36px;
    margin: 0;
    border-width: 2px;
    font-size: 0.72rem;
  }

  .process-steps h3 {
    font-size: 1rem;
  }

  .process-steps p {
    grid-column: 2;
    margin-top: 4px;
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .video-link,
  .video-link img {
    min-height: 220px;
  }

  .video-overlay {
    inset: auto 12px 12px;
    padding: 12px;
  }

  .play-mark {
    width: 38px;
    height: 38px;
  }

  .faq-item button {
    min-height: 58px;
    padding: 16px;
    font-size: 0.94rem;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .demo-grid {
    gap: 24px;
  }

  .demo-form {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 16px;
  }

  .demo-points {
    margin-top: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .modal-backdrop {
    padding: 8px;
  }

  .robot-modal {
    max-height: calc(100dvh - 16px);
    border-radius: 12px;
  }

  .modal-close {
    top: 8px;
    width: 42px;
    height: 42px;
    margin: 8px 8px -50px 0;
  }

  .modal-image {
    min-height: 220px;
    padding: 24px;
  }

  .modal-image img {
    max-height: 180px;
  }

  .modal-summary {
    padding: 24px 18px;
  }

  .modal-description {
    font-size: 0.96rem;
  }

  .spec-groups {
    gap: 12px;
    padding: 16px;
  }

  .spec-group {
    padding: 17px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .modal-footer {
    padding: 18px 16px 20px;
  }

  .legal-main {
    padding: 28px 0 54px;
  }

  .legal-article {
    padding: 24px 18px;
  }

  .legal-header .language-switcher {
    width: auto;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 20px, 1280px);
  }

  .brand img,
  .legal-header .brand img {
    width: 148px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .lang-button {
    min-height: 42px;
  }

  .hero-metrics dd {
    font-size: 0.69rem;
  }

  .catalog-filters {
    padding: 12px;
  }

  .product-image {
    height: 195px;
  }

  .video-overlay strong {
    font-size: 0.86rem;
  }

  .video-overlay small {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Multi-page layout */
.site-nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--ar-route-teal-dark);
  background: var(--ar-clean-ice);
}

.site-nav .nav-cta[aria-current="page"] {
  background: var(--ar-route-teal-dark);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--ar-white);
  background:
    radial-gradient(circle at 82% 35%, rgba(56, 196, 214, 0.16), transparent 28%),
    linear-gradient(115deg, var(--ar-navy), var(--ar-system-navy));
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(56, 196, 214, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(17, 167, 165, 0.04), 0 0 0 104px rgba(17, 167, 165, 0.03);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding-block: clamp(72px, 9vw, 118px);
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.catalogue-page {
  padding-top: 72px;
}

.pathways {
  background: var(--ar-white);
}

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

.pathway-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--ar-clean-ice);
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pathway-card:hover {
  border-color: rgba(17, 167, 165, 0.38);
  box-shadow: var(--ar-shadow-soft);
  transform: translateY(-2px);
}

.pathway-number,
.financing-card-grid article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--ar-white);
  font-size: 0.76rem;
  font-weight: 800;
  background: var(--ar-navy);
  border-radius: 50%;
}

.pathway-card p,
.financing-card-grid p {
  margin: 12px 0 24px;
  color: var(--ar-slate);
}

.pathway-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  color: var(--ar-route-teal-dark);
  font-weight: 800;
}

.pathway-card a:hover {
  color: var(--ar-navy);
}

.page-cta {
  color: var(--ar-white);
  background:
    linear-gradient(120deg, rgba(17, 167, 165, 0.16), transparent 42%),
    var(--ar-navy);
}

.page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}

.page-cta h2 {
  color: var(--ar-white);
}

.page-cta p {
  max-width: 740px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.financing-overview {
  background: var(--ar-white);
}

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

.financing-card-grid article {
  min-width: 0;
  padding: 26px;
  background: var(--ar-clean-ice);
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-card);
}

.financing-card-grid article > span {
  margin-bottom: 22px;
}

.financing-card-grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.section-action {
  margin-top: 28px;
}

.financing-overview .button-secondary {
  color: var(--ar-navy);
  background: var(--ar-white);
  border-color: var(--ar-structure-mist);
}

.financing-overview .button-secondary:hover {
  color: var(--ar-route-teal-dark);
  border-color: rgba(17, 167, 165, 0.5);
  background: var(--ar-clean-ice);
}

.roi-page {
  background: var(--ar-clean-ice);
}

.contact-page-form {
  scroll-margin-top: 78px;
}

/* Simplified ROI interface with progressive disclosure */
.roi-form > h3 {
  margin-bottom: 7px;
}

.roi-form-intro {
  margin: 0 0 20px;
  color: var(--ar-slate);
  font-size: 0.84rem;
}

.roi-field-product {
  grid-column: 1 / -1;
}

.roi-share-picker {
  min-width: 0;
  padding: 0;
  margin: 22px 0 0;
  border: 0;
}

.roi-share-picker legend {
  padding: 0;
  color: var(--ar-navy);
  font-weight: 800;
}

.roi-share-picker > p {
  margin: 4px 0 10px;
  color: var(--ar-slate);
  font-size: 0.74rem;
}

.roi-share-picker > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.roi-share-picker button {
  min-width: 0;
  min-height: 58px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 8px 5px;
  color: var(--ar-slate);
  font-size: 0.72rem;
  line-height: 1.15;
  background: var(--ar-clean-ice);
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-control);
}

.roi-share-picker button strong {
  color: var(--ar-navy);
  font-size: 0.9rem;
}

.roi-share-picker button:hover {
  border-color: rgba(17, 167, 165, 0.56);
}

.roi-share-picker button[aria-pressed="true"] {
  color: var(--ar-white);
  background: var(--ar-navy);
  border-color: var(--ar-navy);
}

.roi-share-picker button[aria-pressed="true"] strong {
  color: var(--ar-white);
}

.roi-advanced-assumptions,
.roi-result-details {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-control);
  background: var(--ar-white);
}

.roi-advanced-assumptions summary,
.roi-result-details summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 14px;
  align-items: center;
  padding: 14px;
  color: var(--ar-navy);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.roi-advanced-assumptions summary::-webkit-details-marker,
.roi-result-details summary::-webkit-details-marker {
  display: none;
}

.roi-advanced-assumptions summary::after,
.roi-result-details summary::after {
  grid-column: 2;
  grid-row: 1 / span 2;
  content: "+";
  color: var(--ar-route-teal-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.roi-advanced-assumptions[open] summary::after,
.roi-result-details[open] summary::after {
  content: "−";
}

.roi-advanced-assumptions summary:hover,
.roi-result-details summary:hover {
  background: var(--ar-clean-ice);
}

.roi-advanced-assumptions summary small,
.roi-result-details summary small {
  grid-column: 1;
  color: var(--ar-slate);
  font-size: 0.7rem;
  font-weight: 500;
}

.roi-advanced-assumptions > .roi-fields {
  padding: 4px 14px 16px;
  border-top: 1px solid var(--ar-structure-mist);
}

.roi-result-details-body {
  padding: 18px;
  border-top: 1px solid var(--ar-structure-mist);
}

.roi-result-details-body > h4 {
  margin: 0 0 12px;
  color: var(--ar-navy);
}

.roi-kpis-primary div {
  padding: 16px;
}

.roi-kpis-primary dd {
  font-size: 1.24rem;
}

.roi-kpis-secondary dd {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .financing-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  .page-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-cta .button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .page-hero-inner {
    padding-block: 62px;
  }

  .page-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .pathway-card,
  .financing-card-grid article {
    padding: 22px;
  }

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

  .page-cta .button {
    width: 100%;
  }

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

  .roi-kpis-secondary {
    grid-template-columns: 1fr;
  }

  .roi-share-picker button {
    font-size: 0.66rem;
  }

  .roi-result-details-body {
    padding: 14px;
  }
}

/* Public catalogue data, financing, ROI and service plans */
.active-industry-filter,
.data-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  margin: 0 0 12px;
  border-radius: var(--ar-radius-control);
}

.active-industry-filter {
  color: var(--ar-navy);
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(17, 167, 165, 0.1);
  border: 1px solid rgba(17, 167, 165, 0.28);
}

.active-industry-filter button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: var(--ar-route-teal-dark);
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--ar-white);
  border: 1px solid rgba(17, 167, 165, 0.32);
  border-radius: 999px;
}

.data-notice {
  color: #56634a;
  font-size: 0.82rem;
  background: #f5f7ed;
  border: 1px solid #dfe5c9;
}

.inline-retry {
  min-height: 36px;
  padding: 7px 11px;
  margin-left: 10px;
  color: var(--ar-route-teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--ar-white);
  border: 1px solid rgba(17, 167, 165, 0.45);
  border-radius: var(--ar-radius-control);
}

.catalog-skeleton {
  pointer-events: none;
}

.catalog-skeleton .product-image,
.catalog-skeleton .product-body span {
  background: linear-gradient(90deg, #edf2f4 20%, #f7fafb 50%, #edf2f4 80%);
  background-size: 220% 100%;
  animation: catalog-loading 1.4s ease-in-out infinite;
}

.catalog-skeleton .product-body {
  gap: 14px;
}

.catalog-skeleton .product-body span {
  width: 100%;
  height: 18px;
  display: block;
  border-radius: 5px;
}

.catalog-skeleton .product-body span:first-child {
  width: 38%;
}

.catalog-skeleton .product-body span:last-child {
  width: 72%;
}

@keyframes catalog-loading {
  to {
    background-position: -220% 0;
  }
}

.product-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  color: var(--ar-slate);
  text-align: center;
}

.product-placeholder img,
.product-image .product-placeholder img,
.modal-image .product-placeholder img {
  position: static;
  inset: auto;
  width: 52px;
  height: 52px;
  max-width: 52px;
  opacity: 0.48;
  object-fit: contain;
}

.product-placeholder span {
  color: var(--ar-navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-placeholder small {
  color: var(--ar-ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-commercial {
  position: relative;
  z-index: 4;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--ar-structure-mist);
}

.product-commercial p {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 7px;
  margin: 0;
}

.product-commercial strong {
  color: var(--ar-navy);
  font-size: 1.05rem;
}

.product-commercial p span,
.product-commercial small {
  color: var(--ar-slate);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-commercial small {
  display: block;
  margin-top: 4px;
}

.industry-grid article {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.industry-grid article:hover,
.industry-grid article:focus-within,
.industry-grid article.is-active {
  border-color: rgba(17, 167, 165, 0.58);
  box-shadow: var(--ar-shadow-soft);
  transform: translateY(-2px);
}

.industry-card-action {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
}

.industry-card-action .industry-image,
.industry-card-action .industry-body {
  display: block;
}

.industry-card-action .industry-body strong {
  display: block;
  color: var(--ar-navy);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.08;
}

.industry-card-action .industry-body > span {
  min-height: 72px;
  display: block;
  margin-top: 8px;
  color: var(--ar-slate);
}

.industry-grid article.is-active .industry-body {
  box-shadow: inset 4px 0 0 var(--ar-route-teal);
}

.modal-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
}

.modal-price small {
  grid-column: 1 / -1;
  color: var(--ar-slate);
  font-size: 0.76rem;
  font-weight: 700;
}

.modal-image .product-placeholder {
  min-height: 260px;
}

.modal-financing {
  padding: 30px;
  background: var(--ar-white);
  border-top: 1px solid var(--ar-structure-mist);
}

.modal-financing > h3 {
  margin-bottom: 16px;
}

.financing-availability-intro {
  max-width: 680px;
  margin: -5px 0 16px;
  color: var(--ar-slate);
}

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

.financing-availability li {
  padding: 9px 13px;
  color: var(--ar-navy);
  font-size: 0.84rem;
  font-weight: 800;
  background: var(--ar-clean-ice);
  border: 1px solid var(--ar-structure-mist);
  border-radius: 999px;
}

.financing-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  padding-top: 14px;
  margin: 14px 0 0;
  color: var(--ar-slate);
  font-size: 0.84rem;
  border-top: 1px solid var(--ar-structure-mist);
}

.financing-terms strong {
  color: var(--ar-navy);
}

.financing-options,
.financing-periods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.financing-options button,
.financing-periods button {
  min-height: 42px;
  padding: 8px 12px;
  color: var(--ar-navy);
  font-size: 0.84rem;
  font-weight: 800;
  background: var(--ar-clean-ice);
  border: 1px solid var(--ar-structure-mist);
  border-radius: 999px;
}

.financing-options button:hover,
.financing-periods button:hover {
  border-color: rgba(17, 167, 165, 0.58);
}

.financing-options button.is-active,
.financing-periods button.is-active {
  color: var(--ar-white);
  background: var(--ar-navy);
  border-color: var(--ar-navy);
}

.financing-periods {
  align-items: center;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--ar-structure-mist);
}

.financing-periods > span {
  margin-right: 3px;
  color: var(--ar-slate);
  font-size: 0.8rem;
  font-weight: 800;
}

.financing-result {
  padding: 18px;
  margin-top: 16px;
  background: var(--ar-clean-ice);
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-card);
}

.financing-result dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.financing-result dt {
  color: var(--ar-slate);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.financing-result dd {
  margin: 3px 0 0;
  color: var(--ar-navy);
  font-size: 1.25rem;
  font-weight: 800;
}

.financing-result p,
.financing-disclaimer {
  margin: 10px 0 0;
  color: var(--ar-slate);
  font-size: 0.8rem;
}

.modal-financing > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--ar-route-teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.roi,
.service-plans {
  scroll-margin-top: 78px;
}

.roi {
  background: var(--ar-white);
}

.data-section-status {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: var(--ar-slate);
  font-weight: 700;
}

.roi-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}

.roi-form,
.roi-results {
  min-width: 0;
  padding: 26px;
  background: var(--ar-white);
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-card);
  box-shadow: var(--ar-shadow-soft);
}

.roi-form {
  position: sticky;
  top: 102px;
}

.roi-form > h3,
.roi-results > h3 {
  margin-bottom: 20px;
}

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

.roi-field {
  min-width: 0;
}

.roi-field label {
  min-height: 42px;
  display: flex;
  align-items: end;
}

.roi-field select:focus {
  border-color: var(--ar-route-teal);
}

.roi-input-control {
  position: relative;
}

.roi-input-control input {
  padding-right: 64px;
}

.roi-input-control > span {
  position: absolute;
  top: 50%;
  right: 13px;
  max-width: 50px;
  color: var(--ar-ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: right;
  transform: translateY(-50%);
  pointer-events: none;
}

.roi-field-manual {
  grid-column: 1 / -1;
}

.roi-field-manual label {
  min-height: 0;
}

.roi-field > small {
  display: block;
  margin-top: 5px;
  color: var(--ar-ink-soft);
  font-size: 0.72rem;
}

.field-error {
  min-height: 17px;
  color: #a33b3b !important;
  font-weight: 700;
}

.roi-field input[aria-invalid="true"] {
  border-color: #b84a4a;
}

.roi-recommendation {
  padding: 11px 13px;
  margin: 0 0 14px;
  color: var(--ar-navy);
  font-size: 0.84rem;
  font-weight: 800;
  background: rgba(17, 167, 165, 0.1);
  border-radius: var(--ar-radius-control);
}

.roi-warning {
  padding: 12px 14px;
  margin: 0 0 14px;
  color: #794334;
  font-size: 0.84rem;
  font-weight: 700;
  background: #fff5ed;
  border: 1px solid #f0d7c6;
  border-radius: var(--ar-radius-control);
}

.roi-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.roi-kpis div {
  min-width: 0;
  padding: 14px;
  background: var(--ar-clean-ice);
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-control);
}

.roi-kpis dt {
  min-height: 34px;
  color: var(--ar-slate);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.roi-kpis dd {
  margin: 6px 0 0;
  color: var(--ar-navy);
  font-size: 1.12rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.roi-scenarios {
  margin-top: 24px;
}

.roi-scenarios h4,
.roi-chart h4 {
  margin: 0 0 12px;
  color: var(--ar-navy);
  font-size: 0.96rem;
}

.roi-table-wrap,
.service-plans-wrap {
  overflow-x: auto;
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-card);
}

.roi-scenarios table,
.service-plans-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ar-white);
}

.roi-scenarios th,
.roi-scenarios td,
.service-plans-table th,
.service-plans-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--ar-structure-mist);
}

.roi-scenarios thead th,
.service-plans-table thead th {
  color: var(--ar-slate);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ar-clean-ice);
}

.roi-scenarios tbody th,
.roi-scenarios td {
  color: var(--ar-navy);
  font-size: 0.78rem;
  white-space: nowrap;
}

.roi-scenarios tbody tr:last-child > *,
.service-plans-table tbody tr:last-child > * {
  border-bottom: 0;
}

.roi-chart {
  min-width: 0;
  padding: 16px;
  margin: 0;
  background: var(--ar-clean-ice);
  border: 1px solid var(--ar-structure-mist);
  border-radius: var(--ar-radius-card);
}

.annual-cost-chart > div {
  display: grid;
  gap: 12px;
}

.annual-cost-chart {
  margin-top: 24px;
}

.annual-cost-chart > div > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.8fr) minmax(80px, 1fr);
  gap: 4px 10px;
  align-items: center;
}

.annual-cost-chart span,
.annual-cost-chart strong {
  color: var(--ar-slate);
  font-size: 0.72rem;
}

.annual-cost-chart strong {
  grid-column: 2;
  color: var(--ar-navy);
}

.annual-cost-chart i {
  height: 12px;
  display: block;
  overflow: hidden;
  background: #dfe8eb;
  border-radius: 99px;
}

.annual-cost-chart b {
  height: 100%;
  display: block;
  background: var(--ar-navy);
  border-radius: inherit;
}

.annual-cost-chart div > div:last-child b {
  background: var(--ar-route-teal);
}

.roi-chart figcaption {
  margin-top: 10px;
  color: var(--ar-slate);
  font-size: 0.72rem;
}

.roi-disclaimer {
  padding-top: 16px;
  margin: 22px 0 0;
  color: var(--ar-slate);
  font-size: 0.78rem;
  border-top: 1px solid var(--ar-structure-mist);
}

.service-plans {
  background: var(--ar-clean-ice);
}

.service-plans-wrap {
  box-shadow: var(--ar-shadow-soft);
}

.service-plans-table th:first-child {
  width: 52%;
}

.service-plans-table tbody th {
  color: var(--ar-navy);
  font-size: 0.92rem;
}

.service-plans-table tbody th small {
  display: block;
  margin-top: 4px;
  color: var(--ar-slate);
  font-size: 0.74rem;
  font-weight: 500;
}

.service-plans-table td {
  color: var(--ar-slate);
  font-size: 0.82rem;
}

.plan-included,
.plan-not-included {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
}

.plan-included {
  color: #167a68;
}

.plan-included > span:first-child {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--ar-white);
  background: #167a68;
  border-radius: 50%;
}

.plan-not-included {
  color: var(--ar-slate);
}

@media (max-width: 1024px) {
  .roi-layout {
    grid-template-columns: 1fr;
  }

  .roi-form {
    position: static;
  }
}

@media (max-width: 760px) {
  .roi-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal-financing {
    padding: 22px 18px;
  }
}

@media (max-width: 640px) {
  .active-industry-filter,
  .data-notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .industry-card-action .industry-body > span {
    min-height: 0;
  }

  .product-commercial {
    padding-top: 11px;
    margin-top: 11px;
  }

  .roi-form,
  .roi-results {
    padding: 16px;
  }

  .roi-fields,
  .roi-kpis {
    grid-template-columns: 1fr;
  }

  .roi-field label,
  .roi-kpis dt {
    min-height: 0;
  }

  .financing-options,
  .financing-periods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .financing-options button,
  .financing-periods button {
    min-width: 0;
    white-space: normal;
  }

  .financing-periods > span {
    grid-column: 1 / -1;
  }

  .financing-result dl {
    grid-template-columns: 1fr;
  }

  .service-plans-table {
    min-width: 640px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-skeleton .product-image,
  .catalog-skeleton .product-body span {
    animation: none;
  }
}

/* Mobile readability and information density */
@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, 1280px);
  }

  .section-pad {
    padding: 42px 0;
  }

  .section-head {
    gap: 10px;
    margin-bottom: 20px;
  }

  .section-head p,
  .demo-grid > div > p,
  .video-grid p {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .section-kicker,
  .eyebrow {
    margin-bottom: 7px;
    font-size: 0.66rem;
  }

  h2 {
    font-size: clamp(1.65rem, 7.4vw, 2rem);
  }

  h3 {
    font-size: 1.02rem;
  }

  .header-inner,
  .legal-header-inner {
    min-height: 64px;
  }

  .brand img,
  .legal-header .brand img {
    width: 150px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 64px;
    max-height: calc(100svh - 76px);
  }

  .nav-overlay {
    inset-block-start: 64px;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    min-height: 0;
    padding: 40px 0 34px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 22px;
  }

  .hero-metrics {
    margin-top: 24px;
  }

  .hero-metrics dt {
    font-size: 1.65rem;
  }

  .page-hero-inner {
    padding-block: 44px;
  }

  .page-hero p {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .partner-strip {
    padding: 30px 0 34px;
  }

  .brand-grid {
    margin-top: 14px;
  }

  .brand-grid article {
    padding: 12px;
  }

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

  .industry-card-action .industry-image {
    aspect-ratio: 4 / 3;
  }

  .industry-body {
    padding: 12px;
  }

  .industry-card-action .industry-body strong {
    font-size: 0.92rem;
    line-height: 1.16;
  }

  .industry-card-action .industry-body > span {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    color: var(--ar-slate);
    font-size: 0.75rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .pathway-grid,
  .financing-card-grid {
    gap: 10px;
  }

  .pathway-card,
  .financing-card-grid article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 4px;
    padding: 15px;
  }

  .pathway-number,
  .financing-card-grid article > span {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 36px;
    height: 36px;
    margin: 0;
    font-size: 0.68rem;
  }

  .pathway-card h3,
  .pathway-card p,
  .pathway-card a,
  .financing-card-grid h3,
  .financing-card-grid p {
    grid-column: 2;
  }

  .pathway-card p,
  .financing-card-grid p {
    margin: 2px 0 7px;
    font-size: 0.8rem;
    line-height: 1.36;
  }

  .pathway-card a {
    font-size: 0.8rem;
  }

  .process-steps li {
    padding-block: 10px;
  }

  .video-grid,
  .demo-grid {
    gap: 22px;
  }

  .video-band p {
    margin: 12px 0 18px;
  }

  .video-link,
  .video-link img {
    min-height: 190px;
  }

  .video-overlay {
    inset: auto 10px 10px;
    padding: 10px;
  }

  .faq-layout {
    gap: 18px;
  }

  .faq-list {
    gap: 7px;
  }

  .faq-item button {
    min-height: 52px;
    gap: 12px;
    padding: 13px 14px;
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .faq-answer {
    padding: 0 14px 14px;
  }

  .faq-answer p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .page-cta-inner {
    gap: 18px;
  }

  .page-cta p {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .catalogue-page {
    padding-top: 36px;
  }

  .catalog-filters {
    gap: 10px;
    padding: 12px;
    margin-bottom: 9px;
  }

  .filter-label {
    margin-bottom: 5px;
    font-size: 0.67rem;
  }

  .filter-options {
    padding-bottom: 4px;
  }

  .filter-chip,
  .filter-reset {
    min-height: 40px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .catalog-status {
    margin-bottom: 10px;
    font-size: 0.8rem;
  }

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

  .product-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: stretch;
  }

  .product-image {
    width: auto;
    height: auto;
    min-height: 100%;
    padding: 12px;
    border-right: 1px solid var(--ar-structure-mist);
    border-bottom: 0;
  }

  .product-image img {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .product-placeholder {
    gap: 5px;
    padding: 8px;
  }

  .product-placeholder img,
  .product-image .product-placeholder img {
    width: 38px;
    height: 38px;
  }

  .product-placeholder span {
    font-size: 0.72rem;
  }

  .product-placeholder small {
    font-size: 0.62rem;
  }

  .product-body {
    padding: 13px 12px;
  }

  .product-brand {
    margin-bottom: 4px;
    font-size: 0.64rem;
  }

  .product-card h3 {
    font-size: 1rem;
    line-height: 1.15;
  }

  .product-description {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-highlights {
    gap: 4px;
    padding-top: 8px;
    margin-top: 8px;
  }

  .product-highlights li {
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .product-commercial {
    padding-top: 8px;
    margin-top: 8px;
  }

  .product-commercial strong {
    font-size: 0.92rem;
  }

  .product-commercial p span,
  .product-commercial small {
    font-size: 0.74rem;
  }

  .product-link {
    padding-top: 9px;
    font-size: 0.78rem;
  }

  .modal-backdrop {
    padding: 5px;
  }

  .robot-modal {
    max-height: calc(100dvh - 10px);
    border-radius: 10px;
  }

  .modal-image {
    min-height: 170px;
    padding: 18px;
  }

  .modal-image img {
    max-height: 140px;
  }

  .modal-image .product-placeholder {
    min-height: 140px;
  }

  .modal-summary {
    padding: 19px 16px 16px;
  }

  .modal-summary h2 {
    font-size: 1.75rem;
  }

  .modal-description {
    margin-top: 9px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .modal-recommendations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 15px;
  }

  .modal-recommendations div {
    padding-left: 9px;
  }

  .modal-recommendations dt,
  .modal-price span {
    font-size: 0.64rem;
  }

  .modal-recommendations dd {
    font-size: 0.8rem;
  }

  .modal-price {
    gap: 7px;
    padding: 11px;
    margin-top: 13px;
  }

  .modal-price strong {
    font-size: 1rem;
  }

  .spec-groups {
    gap: 9px;
    padding: 11px;
  }

  .spec-group {
    padding: 13px;
  }

  .spec-group h3 {
    margin-bottom: 10px;
  }

  .spec-row {
    grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
    gap: 9px;
    padding: 8px 0;
  }

  .spec-row dt,
  .spec-row dd {
    font-size: 0.74rem;
    line-height: 1.34;
  }

  .modal-financing {
    padding: 17px 14px;
  }

  .modal-financing > h3 {
    margin-bottom: 11px;
  }

  .financing-options button,
  .financing-periods button {
    min-height: 40px;
    padding: 7px 9px;
    font-size: 0.75rem;
  }

  .financing-periods {
    padding-top: 10px;
    margin-top: 10px;
  }

  .financing-result {
    padding: 13px;
    margin-top: 12px;
  }

  .financing-result dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .financing-result dd {
    font-size: 1rem;
  }

  .modal-footer {
    gap: 14px;
    padding: 15px 14px 17px;
  }

  .roi-layout {
    gap: 12px;
  }

  .roi-form,
  .roi-results {
    padding: 14px;
    box-shadow: 0 8px 24px rgba(14, 27, 43, 0.07);
  }

  .roi-form > h3,
  .roi-results > h3 {
    margin-bottom: 10px;
  }

  .roi-form-intro {
    margin-bottom: 14px;
    font-size: 0.76rem;
  }

  .roi-fields-primary,
  .roi-advanced-assumptions > .roi-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .roi-fields-primary .roi-field label {
    min-height: 38px;
    align-items: flex-end;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .roi-field-product,
  .roi-field-manual {
    grid-column: 1 / -1;
  }

  .roi-field > small,
  .field-error {
    font-size: 0.66rem;
  }

  .roi-share-picker {
    margin-top: 15px;
  }

  .roi-share-picker button {
    min-height: 52px;
    padding: 6px 3px;
  }

  .roi-advanced-assumptions,
  .roi-result-details {
    margin-top: 13px;
  }

  .roi-advanced-assumptions summary,
  .roi-result-details summary {
    padding: 11px;
  }

  .roi-recommendation,
  .roi-warning {
    padding: 9px 10px;
    margin-bottom: 10px;
    font-size: 0.76rem;
  }

  .roi-kpis-primary,
  .roi-kpis-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .roi-kpis div,
  .roi-kpis-primary div {
    padding: 10px;
  }

  .roi-kpis dt {
    min-height: 30px;
    font-size: 0.62rem;
  }

  .roi-kpis dd,
  .roi-kpis-primary dd,
  .roi-kpis-secondary dd {
    margin-top: 4px;
    font-size: 0.96rem;
    line-height: 1.18;
  }

  .roi-result-details-body {
    padding: 11px;
  }

  .roi-scenarios {
    margin-top: 18px;
  }

  .roi-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .roi-scenarios table,
  .roi-scenarios tbody,
  .roi-scenarios tr {
    display: block;
    width: 100%;
  }

  .roi-scenarios thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .roi-scenarios tbody {
    display: grid;
    gap: 8px;
  }

  .roi-scenarios tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--ar-structure-mist);
    border-radius: var(--ar-radius-control);
  }

  .roi-scenarios tbody th {
    grid-column: 1 / -1;
    padding: 9px 10px;
    background: var(--ar-clean-ice);
    border-bottom: 1px solid var(--ar-structure-mist);
  }

  .roi-scenarios td {
    display: grid;
    gap: 2px;
    padding: 8px 10px;
    white-space: normal;
    border-bottom: 0;
  }

  .roi-scenarios td::before {
    content: attr(data-label);
    color: var(--ar-slate);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .annual-cost-chart {
    margin-top: 16px;
  }

  .roi-chart {
    padding: 12px;
  }

  .roi-disclaimer {
    padding-top: 12px;
    margin-top: 14px;
    font-size: 0.7rem;
  }

  .service-plans-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .service-plans-table,
  .service-plans-table tbody,
  .service-plans-table tr {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .service-plans-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .service-plans-table tbody {
    display: grid;
    gap: 8px;
  }

  .service-plans-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    background: var(--ar-white);
    border: 1px solid var(--ar-structure-mist);
    border-radius: var(--ar-radius-control);
  }

  .service-plans-table tbody tr > th:first-child {
    grid-column: 1 / -1;
    width: 100%;
    padding: 10px 11px;
    font-size: 0.82rem;
    background: var(--ar-clean-ice);
    border-bottom: 1px solid var(--ar-structure-mist);
  }

  .service-plans-table tbody th small {
    margin-top: 2px;
    font-size: 0.66rem;
  }

  .service-plans-table td {
    display: grid;
    align-content: start;
    gap: 5px;
    padding: 9px 11px;
    border-bottom: 0;
  }

  .service-plans-table td + td {
    border-left: 1px solid var(--ar-structure-mist);
  }

  .service-plans-table td::before {
    content: attr(data-label);
    color: var(--ar-slate);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .plan-included,
  .plan-not-included {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .plan-included > span:first-child {
    width: 19px;
    height: 19px;
  }

  .contact-page-form .demo-points {
    gap: 7px;
    margin-top: 16px;
  }

  .contact-page-form .demo-points li {
    padding-left: 24px;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .contact-page-form .direct-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 10px;
    margin-top: 18px;
    padding: 14px;
  }

  .contact-page-form .direct-contact p {
    grid-column: 1 / -1;
  }

  .contact-page-form .direct-contact a {
    font-size: 0.82rem;
  }

  .contact-page-form .demo-grid.is-form-hidden .direct-contact {
    grid-template-columns: 1fr;
  }

  .contact-page-form .demo-grid.is-form-hidden .direct-contact a {
    font-size: 1rem;
  }

  .demo-form {
    gap: 11px;
    padding: 14px;
  }

  .demo-form label {
    margin-bottom: 5px;
    font-size: 0.82rem;
  }

  .demo-form input,
  .demo-form select {
    min-height: 44px;
  }

  .demo-form textarea {
    min-height: 108px;
  }

  .site-footer {
    padding: 36px 0 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px 18px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    width: 150px;
  }

  .footer-brand p {
    margin-top: 8px;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .footer-brand .footer-tagline {
    font-size: 0.98rem;
  }

  .site-footer h2 {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .site-footer nav {
    gap: 6px;
  }

  .site-footer a {
    font-size: 0.82rem;
  }

  .footer-contact dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .footer-contact dt {
    font-size: 0.62rem;
  }

  .footer-contact dd {
    font-size: 0.78rem;
  }

  .footer-bottom {
    padding-top: 15px;
    margin-top: 22px;
  }

  .footer-bottom p {
    font-size: 0.7rem;
  }

  .legal-main {
    padding: 24px 0 42px;
  }

  .legal-article {
    padding: 21px 16px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 20px, 1280px);
  }

  .brand img,
  .legal-header .brand img {
    width: 140px;
  }

  .industry-card-action .industry-body > span {
    -webkit-line-clamp: 2;
  }

  .product-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .product-body {
    padding-inline: 10px;
  }

  .roi-fields-primary .roi-field label {
    font-size: 0.73rem;
  }

  .roi-kpis dd,
  .roi-kpis-primary dd,
  .roi-kpis-secondary dd {
    font-size: 0.88rem;
  }
}
