:root {
  --ink: #17232a;
  --paper: #f4f6f2;
  --muted: #657177;
  --line: rgba(23, 35, 42, 0.14);
  --orange: #e46701;
  --orange-btn: #b84e00;
  --orange-btn-hover: #9c4200;
  --lime: #c9ef4f;
  --steel: #52646e;
  --blue: #176b87;
  --white: #ffffff;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Sora, "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 35, 42, 0.06) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #f8f8f4 0%, var(--paper) 100%);
}

body::selection {
  background: var(--lime);
  color: var(--ink);
}

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

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

.scroll-meter {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 80;
  width: 100%;
  height: 4px;
  transform-origin: left;
  transform: scaleX(var(--scroll, 0));
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(16px, 4vw, 54px);
  background: rgba(248, 248, 244, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 72px;
  height: 72px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 28px;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.topnav a:hover {
  color: var(--orange);
}

.topnav .nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--orange-btn);
  color: var(--white);
}

.topnav .nav-cta:hover {
  color: var(--white);
  background: var(--orange-btn-hover);
}

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(26px, 5vw, 64px);
  isolation: isolate;
}

.hero-media,
.hero-shade,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 16, 20, 0.86), rgba(9, 16, 20, 0.48) 58%, rgba(9, 16, 20, 0.2)),
    linear-gradient(180deg, rgba(9, 16, 20, 0.08), rgba(9, 16, 20, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  color: var(--white);
}

.label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--orange) 55%, transparent);
  color: var(--orange);
  background: color-mix(in srgb, var(--orange) 12%, transparent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.92;
}

h2 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
}

h3 {
  font-size: 24px;
  line-height: 1.05;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-hot {
  background: var(--lime);
  color: var(--ink);
}

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

.hero-status {
  position: absolute;
  right: clamp(16px, 4vw, 54px);
  bottom: clamp(16px, 4vw, 54px);
  z-index: 3;
  display: grid;
  gap: 6px;
  width: min(320px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.hero-status span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero-status strong {
  font-size: 24px;
}

.hero-status small {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 106px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 28px;
  align-items: start;
}

.intro-points,
.capability-grid {
  display: grid;
  gap: 12px;
}

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

.mini-card,
.flow-step,
.diagnostic,
.cap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(23, 35, 42, 0.08);
}

.mini-card {
  min-height: 230px;
  padding: 22px;
}

.mini-card span {
  display: block;
  margin-bottom: 44px;
  color: var(--orange);
  font-weight: 900;
}

.section-head {
  display: grid;
  gap: 4px;
  margin-bottom: 28px;
}

.flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.flow-rail::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 4%;
  right: 4%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  transform-origin: left;
  animation: railScan 4s ease-in-out infinite;
}

.flow-step {
  position: relative;
  padding: 58px 18px 22px;
}

.flow-step::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 5px solid var(--orange);
}

.flow-step span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.problem-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 14px;
}

.problem-switch {
  display: grid;
  gap: 8px;
}

.problem-switch button {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  padding: 0 16px;
  cursor: pointer;
}

.problem-switch button.active {
  background: var(--ink);
  color: var(--white);
}

.diagnostic {
  min-height: 330px;
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(23, 35, 42, 0.96), rgba(23, 35, 42, 0.78)),
    url("assets/slides/image87-154.jpg") center / cover;
  color: var(--white);
}

.diagnostic p {
  color: rgba(255, 255, 255, 0.78);
}

.diagnostic h3 {
  max-width: 620px;
  font-size: clamp(34px, 5vw, 62px);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 34px;
}

.signal-strip span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.signal-strip span::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: var(--lime);
  animation: pulseBar 1.6s ease-in-out infinite;
}

.signal-strip span:nth-child(2)::before {
  animation-delay: 120ms;
}

.signal-strip span:nth-child(3)::before {
  animation-delay: 240ms;
}

.signal-strip span:nth-child(4)::before {
  animation-delay: 360ms;
}

.signal-strip span:nth-child(5)::before {
  animation-delay: 480ms;
}

.capability-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.cap {
  min-height: 210px;
  padding: 22px;
}

.cap-large {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.cap-large img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.cap-large div {
  padding: 22px;
}

.final-cta {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 40px;
  padding: clamp(40px, 7vw, 76px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

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

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.site-footer p {
  margin: 4px 0 0;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-shell {
  width: 100%;
  display: grid;
  gap: 18px;
}

.footer-access {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.footer-access__links,
.footer-subline div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-access__link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.footer-access__link--internal {
  background: var(--ink);
  color: var(--white);
}

.footer-subline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-subline a {
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes railScan {
  0%,
  100% {
    transform: scaleX(0.16);
  }

  50% {
    transform: scaleX(1);
  }
}

@keyframes pulseBar {
  0%,
  100% {
    transform: translateX(-110%);
  }

  50% {
    transform: translateX(170%);
  }
}

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

@media (max-width: 980px) {
  .topbar,
  .intro-grid,
  .problem-layout {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
  }


  .intro-points,
  .flow-rail,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .flow-rail::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: 760px;
    padding: 22px;
  }

  .hero-status {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

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

  .topnav {
    gap: 10px;
  }

  .topnav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

/* Final local direction: industrial, animated and consistent across public pages. */
body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at calc(12% + (var(--scroll, 0) * 18%)) 4%, rgba(228, 103, 1, 0.2), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(23, 107, 135, 0.13), transparent 26%),
    linear-gradient(90deg, rgba(23, 35, 42, 0.055) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #fbfbf6 0%, #edf1ec 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(228, 103, 1, 0.08) 18.2% 18.7%, transparent 19% 100%),
    repeating-linear-gradient(0deg, transparent 0 15px, rgba(23, 35, 42, 0.025) 16px 17px);
  transform: translateY(calc(var(--scroll, 0) * -80px));
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 32vh;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(23, 35, 42, 0.08));
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(248, 248, 244, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.site-header .brand,
.topbar .brand {
  min-width: 0;
}

.site-header .brand img,
.topbar .brand img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
}

.brand-stack,
.brand span {
  display: grid;
  gap: 2px;
}

.brand-mark,
.brand strong {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  line-height: 1;
}

.brand-name,
.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav,
.topnav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

.nav a,
.topnav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover,
.nav a.active,
.topnav a:hover {
  color: var(--orange);
}

.button,
.button-primary,
.button-secondary,
.nav-cta,
.nav .button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.button-primary,
.nav .button-primary,
.topnav .nav-cta {
  background: var(--orange-btn);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(228, 103, 1, 0.28);
}

.site-header .nav a.button-primary.active,
.site-header .nav a.button-primary.active:hover,
.topbar .topnav a.nav-cta.active,
.topbar .topnav a.nav-cta.active:hover {
  background: var(--orange-btn);
  color: var(--white);
}

.button-secondary,
.button-cool {
  border-color: rgba(23, 35, 42, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.button-hot {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(201, 239, 79, 0.25);
}

.menu-toggle {
  display: none;
}

.page-hero {
  position: relative;
  padding: clamp(28px, 5vw, 70px) 0 0;
}

.page-hero .container {
  position: relative;
}

.page-hero__stage,
.page-hero > .container:not(:has(.page-hero__stage)) {
  position: relative;
  min-height: clamp(520px, 62vh, 690px);
  overflow: hidden;
  display: grid;
  align-items: end;
  border: 1px solid rgba(23, 35, 42, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 35, 42, 0.92), rgba(23, 35, 42, 0.56)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--ink);
  color: var(--white);
}

.page-hero > .container:not(:has(.page-hero__stage)) {
  padding: clamp(30px, 6vw, 70px);
  align-content: end;
  justify-items: start;
}

.page-hero__slider,
.page-hero__overlay,
.page-hero__slide {
  position: absolute;
  inset: 0;
}

.page-hero__slide {
  background-size: cover;
  background-position: center;
  animation: pageHeroFade 14s infinite;
  transform: scale(1.02);
}

.page-hero__overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 15% 20%, rgba(228, 103, 1, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(9, 16, 20, 0.92), rgba(9, 16, 20, 0.5) 58%, rgba(9, 16, 20, 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.065) 0 1px, transparent 1px 72px);
}

.page-hero__overlay::after,
.hero-shade::after,
.diagnostic::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0 32%, rgba(201, 239, 79, 0.16) 38%, transparent 46% 100%);
  transform: translateX(-120%);
  animation: scannerSweep 6s ease-in-out infinite;
}

.page-hero__content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  padding: clamp(28px, 5vw, 64px);
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.94;
}

.page-hero p,
.page-hero .breadcrumbs {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.9vw, 20px);
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.eyebrow,
.kicker {
  justify-self: start;
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--orange) 55%, transparent);
  color: var(--orange);
  background: color-mix(in srgb, var(--orange) 12%, transparent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-hero__fact {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.page-hero--services .page-hero__stage,
.page-hero--sectors .page-hero__stage,
.page-hero--company .page-hero__stage {
  min-height: clamp(600px, 66vh, 740px);
}

.page-hero--services .page-hero__content,
.page-hero--sectors .page-hero__content,
.page-hero--company .page-hero__content {
  max-width: min(760px, 58%);
}

.page-hero__visual {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.services-hero-visual {
  inset: 0;
}

.hero-line-rail,
.hero-line-pack,
.hero-line-laser,
.hero-line-beam,
.hero-line-reader,
.hero-line-pallet,
.hero-line-wrap,
.hero-line-data {
  position: absolute;
}

.hero-line-rail {
  left: 42%;
  right: 8%;
  top: 68%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  box-shadow: 0 0 28px rgba(201, 239, 79, 0.34);
}

.hero-line-pack {
  width: 108px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(23, 35, 42, 0.54);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  animation: servicePackTravel 7s linear infinite;
}

.hero-line-pack i {
  color: var(--white);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero-line-pack--one {
  left: 43%;
  top: calc(68% - 82px);
}

.hero-line-pack--two {
  left: 55%;
  top: calc(68% - 82px);
  animation-delay: 3.4s;
}

.hero-line-laser {
  right: 33%;
  top: 22%;
  width: 112px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(228, 103, 1, 0.42);
  border-radius: 8px;
  background: rgba(228, 103, 1, 0.16);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 0 0 34px rgba(228, 103, 1, 0.2);
}

.hero-line-beam {
  right: 30%;
  top: 34%;
  width: 240px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(228, 103, 1, 0), var(--orange), var(--lime));
  transform: rotate(26deg);
  transform-origin: right center;
  box-shadow: 0 0 22px rgba(228, 103, 1, 0.6);
  animation: serviceLaserPulse 2.4s ease-in-out infinite;
}

.hero-line-reader {
  right: 13%;
  top: 36%;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 239, 79, 0.52);
  border-radius: 8px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 40px rgba(201, 239, 79, 0.16);
}

.hero-line-reader::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(201, 239, 79, 0.42);
  border-radius: 8px;
  animation: serviceReaderScan 3.2s ease-in-out infinite;
}

.hero-line-pallet {
  right: 10%;
  bottom: 14%;
  width: 172px;
  height: 112px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    rgba(255, 255, 255, 0.08);
  background-size: 43px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-line-wrap {
  right: 9%;
  bottom: 12%;
  width: 190px;
  height: 128px;
  border: 2px solid rgba(201, 239, 79, 0.55);
  border-radius: 50%;
  transform: rotate(-15deg);
  animation: serviceWrapOrbit 4.2s linear infinite;
}

.hero-line-data {
  min-width: 76px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  animation: heroTokenFloat 4s ease-in-out infinite;
}

.hero-line-data--a {
  right: 43%;
  top: 18%;
}

.hero-line-data--b {
  right: 20%;
  bottom: 32%;
  animation-delay: 500ms;
}

.hero-line-data--c {
  right: 37%;
  bottom: 16%;
  color: var(--lime);
  animation-delay: 1000ms;
}

.sectors-hero-visual {
  inset: 0;
}

.sector-map-axis,
.sector-map-card,
.sector-map-pulse {
  position: absolute;
}

.sector-map-axis {
  left: 46%;
  right: 7%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  box-shadow: 0 0 26px rgba(201, 239, 79, 0.34);
}

.sector-map-card {
  width: 180px;
  min-height: 80px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(23, 35, 42, 0.42);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  animation: sectorCardFloat 5s ease-in-out infinite;
}

.sector-map-card b {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.sector-map-card i {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sector-map-card--food {
  right: 35%;
  top: 14%;
  border-color: rgba(201, 239, 79, 0.34);
}

.sector-map-card--pharma {
  right: 12%;
  top: 19%;
  animation-delay: 300ms;
}

.sector-map-card--logistics {
  right: 28%;
  top: 42%;
  animation-delay: 600ms;
}

.sector-map-card--auto {
  right: 6%;
  top: 49%;
  animation-delay: 900ms;
}

.sector-map-card--cosmetic {
  right: 37%;
  bottom: 13%;
  animation-delay: 1200ms;
}

.sector-map-card--chem {
  right: 14%;
  bottom: 10%;
  border-color: rgba(228, 103, 1, 0.34);
  animation-delay: 1500ms;
}

.sector-map-pulse {
  left: 46%;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 26px rgba(201, 239, 79, 0.72);
  animation: sectorMapPulse 5s ease-in-out infinite;
}

.sector-map-pulse--b {
  animation-delay: 2s;
}

.company-hero-visual {
  inset: 0;
}

.company-blueprint,
.company-tool,
.company-route,
.company-scanline {
  position: absolute;
}

.company-blueprint {
  right: 9%;
  top: 15%;
  width: min(420px, 36%);
  min-height: 330px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(23, 35, 42, 0.44);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.company-blueprint i {
  display: block;
  padding: 13px 14px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-tool {
  display: grid;
  place-items: center;
  min-width: 92px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(201, 239, 79, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  animation: heroTokenFloat 4.6s ease-in-out infinite;
}

.company-tool--plc {
  right: 41%;
  top: 25%;
}

.company-tool--mark {
  right: 27%;
  bottom: 26%;
  border-color: rgba(228, 103, 1, 0.42);
  animation-delay: 500ms;
}

.company-tool--data {
  right: 8%;
  bottom: 20%;
  color: var(--lime);
  animation-delay: 1000ms;
}

.company-route {
  right: 11%;
  bottom: 35%;
  width: 470px;
  max-width: 42%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.34);
  animation: companyRoutePulse 4.2s ease-in-out infinite;
}

.company-scanline {
  right: 9%;
  top: 18%;
  width: min(420px, 36%);
  height: 3px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.72);
  animation: companyHeroScan 3.6s ease-in-out infinite;
}

.hero-process-rail,
.hero-process-station,
.hero-process-pack,
.hero-process-link,
.sector-matrix-title,
.sector-matrix-row,
.company-dossier,
.company-method,
.company-method-line {
  position: absolute;
}

.services-hero-visual {
  left: clamp(34px, 5vw, 70px);
  right: clamp(34px, 5vw, 70px);
  top: auto;
  bottom: clamp(28px, 4vw, 56px);
  height: 190px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(8, 15, 19, 0.35);
  background-size: 58px 58px;
}

.services-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 76px, rgba(255, 255, 255, 0.08) 76px 78px),
    linear-gradient(90deg, transparent, rgba(201, 239, 79, 0.08), transparent);
  opacity: 0.48;
  transform: translateX(-42%);
  animation: processPanelSweep 8s linear infinite;
}

.page-hero--services .page-hero__content {
  padding-bottom: clamp(230px, 24vw, 280px);
}

.hero-process-rail {
  left: 7%;
  right: 7%;
  top: 50%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  box-shadow: 0 0 22px rgba(201, 239, 79, 0.24);
}

.hero-process-rail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: translateX(-100%);
  animation: processRailFlow 3.8s linear infinite;
}

.hero-process-station {
  top: 26px;
  width: 150px;
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  animation: processStationFocus 8s ease-in-out infinite;
}

.hero-process-station::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  width: 2px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), var(--lime));
  transform: translateX(-50%);
  opacity: 0.5;
}

.hero-process-station b {
  color: var(--orange);
  font-size: 12px;
}

.hero-process-station i {
  color: var(--white);
  font-style: normal;
  font-weight: 900;
}

.hero-process-station--one {
  left: 8%;
}

.hero-process-station--two {
  left: 32%;
  animation-delay: 2s;
}

.hero-process-station--three {
  left: 56%;
  animation-delay: 4s;
}

.hero-process-station--four {
  right: 8%;
  animation-delay: 6s;
}

.hero-process-pack {
  top: calc(50% - 22px);
  left: 7%;
  width: 62px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  animation: processPackJourney 8s linear infinite;
}

.hero-process-pack--a {
  animation-delay: 0s;
}

.hero-process-pack--b {
  color: var(--lime);
  animation-delay: -4s;
}

.hero-process-link {
  top: calc(50% - 1px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(201, 239, 79, 0.95), transparent);
  opacity: 0;
  animation: processDataBurst 8s linear infinite;
}

.hero-process-link--a {
  left: 26%;
  width: 26%;
  animation-delay: 2.1s;
}

.hero-process-link--b {
  left: 54%;
  width: 32%;
  animation-delay: 5.2s;
}

.sectors-hero-visual {
  right: clamp(34px, 5vw, 70px);
  left: auto;
  top: 50%;
  bottom: auto;
  width: min(520px, 42%);
  height: auto;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.sector-matrix-title,
.sector-matrix-row {
  position: relative;
}

.sector-matrix-title {
  display: block;
  width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(228, 103, 1, 0.55);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-matrix-row {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(110px, 0.9fr) minmax(150px, 1.2fr) 68px;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.sector-matrix-row:not(.sector-matrix-row--head) {
  animation: sectorRequirementFocus 12s ease-in-out infinite;
}

.sector-matrix-row:not(.sector-matrix-row--head)::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(201, 239, 79, 0.18), transparent);
  transform: skewX(-18deg);
  animation: sectorRequirementScan 12s linear infinite;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.sector-matrix-row:nth-child(3) {
  animation-delay: 0s;
}

.sector-matrix-row:nth-child(3)::after {
  animation-delay: 0s;
}

.sector-matrix-row:nth-child(4) {
  animation-delay: 2s;
}

.sector-matrix-row:nth-child(4)::after {
  animation-delay: 2s;
}

.sector-matrix-row:nth-child(5) {
  animation-delay: 4s;
}

.sector-matrix-row:nth-child(5)::after {
  animation-delay: 4s;
}

.sector-matrix-row:nth-child(6) {
  animation-delay: 6s;
}

.sector-matrix-row:nth-child(6)::after {
  animation-delay: 6s;
}

.sector-matrix-row:nth-child(7) {
  animation-delay: 8s;
}

.sector-matrix-row:nth-child(7)::after {
  animation-delay: 8s;
}

.sector-matrix-row:nth-child(8) {
  animation-delay: 10s;
}

.sector-matrix-row:nth-child(8)::after {
  animation-delay: 10s;
}

.sector-matrix-row--head {
  background: rgba(255, 255, 255, 0.15);
}

.sector-matrix-row b,
.sector-matrix-row i,
.sector-matrix-row em {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.sector-matrix-row i {
  color: rgba(255, 255, 255, 0.7);
}

.sector-matrix-row em {
  justify-self: end;
  color: var(--lime);
  letter-spacing: 0.08em;
}

.company-hero-visual {
  right: clamp(34px, 5vw, 70px);
  left: auto;
  top: 50%;
  bottom: auto;
  width: min(500px, 40%);
  height: 430px;
  transform: translateY(-50%);
}

.company-dossier {
  inset: 0 auto auto 0;
  width: 100%;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.company-dossier::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  transform-origin: left center;
  animation: companyDossierSignal 7s ease-in-out infinite;
}

.company-dossier b {
  color: var(--white);
  font-size: 24px;
}

.company-dossier i,
.company-dossier em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 900;
}

.company-dossier em {
  color: var(--lime);
}

.company-method {
  left: 0;
  right: 0;
  min-height: 68px;
  display: grid;
  align-items: center;
  padding: 12px 18px 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  animation: companyMethodFocus 7s ease-in-out infinite;
}

.company-method b {
  color: var(--orange);
}

.company-method i {
  color: var(--white);
  font-style: normal;
  font-weight: 900;
}

.company-method--one {
  top: 180px;
}

.company-method--two {
  top: 262px;
  animation-delay: 2.3s;
}

.company-method--three {
  top: 344px;
  animation-delay: 4.6s;
}

.company-method-line {
  left: 10px;
  top: 228px;
  bottom: 52px;
  width: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.company-method-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--orange), var(--lime));
  transform: scaleY(0);
  transform-origin: top center;
  animation: companyMethodLine 7s linear infinite;
}

.grid,
.grid-2,
.grid-3,
.service-grid,
.steps,
.contact-grid,
.tech-list,
.faq {
  display: grid;
  gap: 14px;
}

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

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

.steps,
.tech-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.route-card,
.step,
.faq-item,
.contact-data,
form,
.legal-content,
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(23, 35, 42, 0.08);
}

.card,
.route-card,
.step,
.faq-item,
.contact-data,
form,
.legal-content,
.cta-band {
  padding: clamp(22px, 3vw, 34px);
}

.card::before,
.route-card::before,
.step::before,
.faq-item::before,
.contact-data::before,
form::before,
.legal-content::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(228, 103, 1, 0.1), transparent),
    repeating-linear-gradient(90deg, rgba(23, 35, 42, 0.04) 0 1px, transparent 1px 54px);
  opacity: 0;
  transition: opacity 200ms ease;
}

.card:hover::before,
.route-card:hover::before,
.step:hover::before,
.faq-item:hover::before {
  opacity: 1;
}

.card:hover,
.route-card:hover,
.step:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 103, 1, 0.28);
  box-shadow: 0 24px 70px rgba(23, 35, 42, 0.14);
}

.card,
.route-card,
.step,
.faq-item,
.tech-list span {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

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

.route-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64)),
    linear-gradient(135deg, rgba(23, 107, 135, 0.08), transparent);
}

.route-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(23, 35, 42, 0.96), rgba(23, 35, 42, 0.74)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 48px 48px;
  color: var(--white);
}

.route-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.78);
}

.route-card span,
.step span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-lab .steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
  min-height: 250px;
}

.step h3 {
  margin-top: 42px;
}

.tech-console {
  padding-top: 0;
}

.tech-list span {
  min-height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 50% 0, rgba(201, 239, 79, 0.24), transparent 50%);
  font-weight: 900;
}

.card-media {
  min-height: 190px;
  margin: calc(clamp(22px, 3vw, 34px) * -1) calc(clamp(22px, 3vw, 34px) * -1) 20px;
  background:
    linear-gradient(135deg, rgba(23, 35, 42, 0.12), rgba(228, 103, 1, 0.12)),
    repeating-linear-gradient(90deg, rgba(23, 35, 42, 0.1) 0 1px, transparent 1px 28px);
}

.company-card--workflow .card-media {
  background:
    radial-gradient(circle at 22% 28%, rgba(228, 103, 1, 0.28), transparent 22%),
    linear-gradient(90deg, transparent 0 18%, rgba(201, 239, 79, 0.52) 18% 20%, transparent 20% 43%, rgba(228, 103, 1, 0.62) 43% 45%, transparent 45% 68%, rgba(23, 107, 135, 0.62) 68% 70%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 38px),
    linear-gradient(135deg, rgba(23, 35, 42, 0.96), rgba(38, 52, 60, 0.86));
}

.sector-card--pharma .card-media {
  background:
    radial-gradient(circle at 74% 30%, rgba(201, 239, 79, 0.2), transparent 20%),
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.9) 12% 20%, transparent 20% 30%, rgba(255, 255, 255, 0.9) 30% 38%, transparent 38% 48%, rgba(255, 255, 255, 0.9) 48% 56%, transparent 56%),
    repeating-linear-gradient(45deg, rgba(23, 35, 42, 0.12) 0 4px, transparent 4px 8px),
    linear-gradient(135deg, rgba(23, 107, 135, 0.94), rgba(23, 35, 42, 0.9));
}

.company-card--company .card-media {
  background:
    linear-gradient(90deg, rgba(228, 103, 1, 0.75) 0 5px, transparent 5px 100%) 18% 22% / 68% 18px no-repeat,
    linear-gradient(90deg, rgba(201, 239, 79, 0.75) 0 5px, transparent 5px 100%) 18% 44% / 58% 18px no-repeat,
    linear-gradient(90deg, rgba(23, 107, 135, 0.75) 0 5px, transparent 5px 100%) 18% 66% / 76% 18px no-repeat,
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, rgba(23, 35, 42, 0.98), rgba(38, 52, 60, 0.86));
}

.sector-card--logistics .card-media {
  background:
    radial-gradient(circle at 20% 58%, var(--orange) 0 8px, transparent 9px),
    radial-gradient(circle at 50% 34%, var(--lime) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 64%, var(--blue) 0 8px, transparent 9px),
    linear-gradient(24deg, transparent 0 28%, rgba(201, 239, 79, 0.72) 28% 30%, transparent 30% 62%, rgba(228, 103, 1, 0.72) 62% 64%, transparent 64%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, rgba(23, 35, 42, 0.98), rgba(38, 52, 60, 0.86));
}

.sector-card--food .card-media,
.sector-card--automotive .card-media,
.sector-card--cosmetics .card-media,
.sector-card--chemical .card-media {
  background:
    radial-gradient(circle at 20% 30%, rgba(228, 103, 1, 0.34), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(23, 107, 135, 0.28), transparent 28%),
    repeating-linear-gradient(90deg, rgba(23, 35, 42, 0.12) 0 1px, transparent 1px 36px),
    linear-gradient(135deg, #eef2ec, #ffffff);
}

.service-card .service-visual {
  position: relative;
  min-height: 220px;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 18%, rgba(228, 103, 1, 0.28), transparent 26%),
    radial-gradient(circle at 78% 74%, rgba(201, 239, 79, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(23, 35, 42, 0.98), rgba(38, 52, 60, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 34px);
  overflow: hidden;
}

.service-card .service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(255, 255, 255, 0.055) 24px 25px),
    linear-gradient(105deg, transparent 0 32%, rgba(201, 239, 79, 0.16) 43%, transparent 54% 100%);
  transform: translateX(-120%);
  animation: scannerSweep 6s ease-in-out infinite;
}

.service-card .service-visual span,
.service-card .service-visual i,
.service-card .service-visual b {
  position: absolute;
  display: block;
}

.visual-automation .visual-bus {
  left: 10%;
  right: 10%;
  top: 50%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.24);
}

.visual-plc,
.visual-hmi,
.visual-alert,
.visual-gauge,
.visual-reader,
.visual-laser-head {
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.visual-plc {
  left: 12%;
  top: 35%;
  width: 76px;
  height: 74px;
}

.visual-hmi {
  right: 14%;
  top: 25%;
  width: 100px;
  height: 74px;
}

.visual-hmi::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 0 45%, var(--lime) 45% 78%, rgba(23, 35, 42, 0.16) 78%);
}

.visual-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.75);
  animation: serviceNode 2.4s ease-in-out infinite;
}

.visual-node-a {
  left: 38%;
  top: 47%;
}

.visual-node-b {
  left: 58%;
  top: 47%;
  animation-delay: 300ms;
}

.visual-node-c {
  left: 48%;
  top: 28%;
  background: var(--orange);
  animation-delay: 600ms;
}

.visual-endline .visual-conveyor {
  left: 0;
  right: 0;
  bottom: 34px;
  height: 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 10px, transparent 10px 28px);
  animation: conveyorMove 900ms linear infinite;
}

.visual-case {
  width: 52px;
  height: 42px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f5d7ad, #c9893e);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  animation: endlineCase 5.4s linear infinite;
}

.visual-case-a {
  bottom: 72px;
  left: -58px;
}

.visual-case-b {
  bottom: 72px;
  left: -130px;
  animation-delay: -2.6s;
}

.visual-pallet {
  right: 42px;
  bottom: 70px;
  width: 90px;
  height: 78px;
  background:
    linear-gradient(90deg, transparent 0 30%, rgba(23, 35, 42, 0.28) 30% 34%, transparent 34% 66%, rgba(23, 35, 42, 0.28) 66% 70%, transparent 70%),
    repeating-linear-gradient(0deg, #e8b36a 0 18px, #c78332 18px 22px);
  border-radius: 5px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.visual-wrap-ring {
  right: 20px;
  bottom: 50px;
  width: 130px;
  height: 118px;
  border: 3px solid rgba(201, 239, 79, 0.86);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(201, 239, 79, 0.34), inset 0 0 22px rgba(201, 239, 79, 0.16);
  animation: wrapOrbit 2.2s linear infinite;
}

.visual-coding .visual-laser-head {
  left: 42%;
  top: 28px;
  width: 84px;
  height: 54px;
}

.visual-laser-beam {
  left: 52%;
  top: 78px;
  width: 4px;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(228, 103, 1, 0.96), transparent);
  box-shadow: 0 0 22px rgba(228, 103, 1, 0.86), 0 0 48px rgba(228, 103, 1, 0.48);
  transform: rotate(18deg);
  transform-origin: top;
  animation: laserPulse 1.2s ease-in-out infinite;
}

.visual-pack {
  left: 28%;
  bottom: 38px;
  width: 148px;
  height: 86px;
  display: grid !important;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fbf7ef, #d9cec0);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.visual-pack i {
  position: relative !important;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background:
    repeating-linear-gradient(45deg, var(--ink) 0 4px, transparent 4px 8px),
    var(--white);
}

.visual-pack b {
  position: relative !important;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
  animation: codeBurn 3.4s ease-in-out infinite;
}

.visual-reader {
  right: 34px;
  bottom: 52px;
  width: 58px;
  height: 42px;
  background: var(--lime);
}

.visual-reader::before {
  content: "";
  position: absolute;
  inset: -22px -16px;
  border: 2px solid var(--lime);
  border-radius: 8px;
  opacity: 0.78;
}

.visual-software .visual-screen {
  left: 34px;
  top: 38px;
  width: 190px;
  height: 126px;
  display: flex !important;
  align-items: end;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 28px);
}

.visual-screen i {
  position: relative !important;
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--lime), var(--orange));
  animation: serviceBars 2.2s ease-in-out infinite;
}

.visual-screen i:nth-child(1) {
  height: 42%;
}

.visual-screen i:nth-child(2) {
  height: 72%;
  animation-delay: 180ms;
}

.visual-screen i:nth-child(3) {
  height: 54%;
  animation-delay: 360ms;
}

.visual-screen i:nth-child(4) {
  height: 86%;
  animation-delay: 540ms;
}

.visual-gauge {
  right: 38px;
  top: 46px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--ink) 0 48%, transparent 50%),
    conic-gradient(var(--lime) 0 82%, rgba(255, 255, 255, 0.18) 82% 100%);
  color: var(--white);
}

.visual-gauge::after {
  content: none;
}

.visual-data {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(201, 239, 79, 0.72);
  animation: dataFloat 3.2s ease-in-out infinite;
}

.visual-data-a {
  left: 70%;
  bottom: 44px;
}

.visual-data-b {
  left: 78%;
  bottom: 72px;
  animation-delay: 380ms;
}

.visual-data-c {
  left: 86%;
  bottom: 104px;
  background: var(--orange);
  animation-delay: 760ms;
}

.visual-terminal {
  left: 28px;
  right: 34px;
  top: 40px;
  height: 126px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(255, 255, 255, 0.07) 25px 26px);
}

.visual-terminal i {
  position: relative !important;
  height: 9px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), rgba(255, 255, 255, 0.22));
  animation: terminalLine 2.4s ease-in-out infinite;
}

.visual-terminal i:nth-child(1) {
  width: 82%;
}

.visual-terminal i:nth-child(2) {
  width: 58%;
  animation-delay: 220ms;
}

.visual-terminal i:nth-child(3) {
  width: 72%;
  animation-delay: 440ms;
}

.visual-alert {
  right: 34px;
  bottom: 34px;
  width: 68px;
  height: 46px;
  background: var(--orange-btn);
  color: var(--white);
}

.visual-sat-pulse {
  left: 44px;
  bottom: 46px;
  width: 110px;
  height: 42px;
  background:
    linear-gradient(90deg, transparent 0 10%, var(--lime) 10% 18%, transparent 18% 33%, var(--lime) 33% 38%, transparent 38% 52%, var(--orange) 52% 58%, transparent 58%);
  filter: drop-shadow(0 0 14px rgba(201, 239, 79, 0.42));
  animation: satPulse 1.8s ease-in-out infinite;
}

.visual-remote {
  right: 118px;
  bottom: 38px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  box-shadow: 0 0 26px rgba(201, 239, 79, 0.3);
}

.visual-remote::before,
.visual-remote::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 239, 79, 0.7);
  border-radius: inherit;
}

.visual-remote::after {
  inset: 17px;
  background: var(--lime);
}

.sector-card .sector-visual,
.company-card .company-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 20%, rgba(228, 103, 1, 0.24), transparent 25%),
    radial-gradient(circle at 78% 76%, rgba(201, 239, 79, 0.18), transparent 27%),
    linear-gradient(135deg, rgba(23, 35, 42, 0.98), rgba(38, 52, 60, 0.86)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 34px);
}

.sector-card .sector-visual::before,
.company-card .company-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(255, 255, 255, 0.05) 24px 25px),
    linear-gradient(100deg, transparent 0 34%, rgba(201, 239, 79, 0.12) 44%, transparent 54% 100%);
  transform: translateX(-130%);
  animation: scannerSweep 6.4s ease-in-out infinite;
}

.sector-card .sector-visual span,
.sector-card .sector-visual i,
.company-card .company-visual span,
.company-card .company-visual i {
  position: absolute;
  display: block;
}

.sector-belt {
  left: 0;
  right: 0;
  bottom: 36px;
  height: 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 10px, transparent 10px 28px);
  animation: conveyorMove 900ms linear infinite;
}

.food-pack {
  bottom: 72px;
  left: -82px;
  width: 76px;
  height: 54px;
  display: grid !important;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #f5d7ad, #c9893e),
    repeating-linear-gradient(90deg, rgba(23, 35, 42, 0.12) 0 1px, transparent 1px 18px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  animation: sectorTravel 5.4s linear infinite;
}

.food-pack-b {
  animation-delay: -2.6s;
}

.food-pack i {
  position: relative !important;
  padding: 4px 7px;
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  font-style: normal;
}

.sector-reader,
.pharma-code,
.logi-box,
.chem-alert,
.cosmetic-code {
  display: grid !important;
  place-items: center;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.sector-reader {
  right: 34px;
  bottom: 62px;
  width: 66px;
  height: 46px;
  border: 2px solid var(--lime);
  color: var(--lime);
  box-shadow: 0 0 26px rgba(201, 239, 79, 0.3);
}

.pharma-doc {
  left: 28px;
  top: 32px;
  width: 118px;
  height: 150px;
  padding: 26px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.pharma-doc i {
  position: relative !important;
  height: 8px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(23, 35, 42, 0.18));
}

.pharma-doc i:nth-child(1) {
  width: 84%;
}

.pharma-doc i:nth-child(2) {
  width: 62%;
}

.pharma-doc i:nth-child(3) {
  width: 74%;
}

.pharma-vial {
  bottom: 42px;
  width: 46px;
  height: 104px;
  border-radius: 14px 14px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0 22%, rgba(201, 239, 79, 0.72) 22% 70%, rgba(255, 255, 255, 0.88) 70%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7), transparent);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  animation: vialCheck 2.6s ease-in-out infinite;
}

.pharma-vial-a {
  right: 96px;
}

.pharma-vial-b {
  right: 42px;
  animation-delay: 420ms;
}

.pharma-code {
  right: 32px;
  top: 34px;
  width: 98px;
  height: 36px;
  background: var(--white);
  color: var(--ink);
}

.route-line {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.22);
  transform-origin: left;
  animation: routeGrow 3s ease-in-out infinite;
}

.route-line-a {
  left: 12%;
  right: 28%;
  top: 45%;
  transform: rotate(22deg);
}

.route-line-b {
  left: 32%;
  right: 12%;
  top: 62%;
  transform: rotate(-18deg);
  animation-delay: 520ms;
}

.logi-node {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.62);
  animation: serviceNode 2.4s ease-in-out infinite;
}

.logi-node-a {
  left: 20%;
  top: 52%;
  background: var(--orange);
}

.logi-node-b {
  left: 50%;
  top: 32%;
  animation-delay: 260ms;
}

.logi-node-c {
  right: 20%;
  top: 58%;
  background: var(--blue);
  animation-delay: 520ms;
}

.logi-box {
  left: 38%;
  bottom: 38px;
  width: 68px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  animation: sectorFloat 2.8s ease-in-out infinite;
}

.robot-base {
  left: 38px;
  bottom: 36px;
  width: 72px;
  height: 56px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.robot-base::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(228, 103, 1, 0.52);
}

.robot-arm {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime));
  transform-origin: left center;
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.24);
}

.robot-arm-a {
  left: 75px;
  bottom: 94px;
  width: 112px;
  transform: rotate(-32deg);
  animation: robotSweepA 3s ease-in-out infinite;
}

.robot-arm-b {
  left: 164px;
  bottom: 152px;
  width: 86px;
  transform: rotate(34deg);
  animation: robotSweepB 3s ease-in-out infinite;
}

.robot-grip {
  right: 60px;
  top: 60px;
  width: 42px;
  height: 34px;
  border: 3px solid var(--lime);
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.auto-part {
  right: 48px;
  bottom: 42px;
  width: 96px;
  height: 48px;
  border-radius: 999px 999px 18px 18px;
  background:
    radial-gradient(circle at 26% 76%, var(--ink) 0 10px, transparent 11px),
    radial-gradient(circle at 74% 76%, var(--ink) 0 10px, transparent 11px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(201, 239, 79, 0.62));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.cosmetic-bottle {
  bottom: 42px;
  width: 54px;
  height: 112px;
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 216, 196, 0.84)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7), transparent);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  animation: bottlePass 4.8s linear infinite;
}

.cosmetic-bottle-a {
  left: -72px;
}

.cosmetic-bottle-b {
  left: -142px;
  animation-delay: -2.3s;
}

.cosmetic-bottle::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: -18px;
  height: 22px;
  border-radius: 5px 5px 0 0;
  background: rgba(255, 255, 255, 0.9);
}

.cosmetic-bottle i {
  left: 8px;
  right: 8px;
  bottom: 22px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--orange), var(--lime));
}

.label-sweep {
  left: 46%;
  top: 28px;
  width: 4px;
  height: 166px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 26px rgba(228, 103, 1, 0.72);
  animation: labelScan 1.8s ease-in-out infinite;
}

.cosmetic-code {
  right: 28px;
  bottom: 50px;
  width: 86px;
  height: 38px;
  background: var(--lime);
  color: var(--ink);
}

.tank {
  bottom: 42px;
  width: 76px;
  height: 106px;
  border-radius: 18px 18px 8px 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(183, 202, 198, 0.74));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.tank-a {
  left: 36px;
}

.tank-b {
  right: 48px;
}

.pipe {
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--orange) 0 20%, var(--lime) 20% 36%, var(--blue) 36% 100%);
  background-size: 160px 100%;
  box-shadow: 0 0 20px rgba(201, 239, 79, 0.28);
  animation: pipeFlow 1.5s linear infinite;
}

.pipe-a {
  left: 100px;
  right: 112px;
  bottom: 92px;
}

.pipe-b {
  left: 50%;
  top: 46px;
  width: 92px;
  transform: rotate(90deg);
}

.chem-alert {
  left: 50%;
  bottom: 126px;
  width: 72px;
  height: 38px;
  background: var(--orange-btn);
  color: var(--white);
  transform: translateX(-50%);
}

.identity-card {
  left: 34px;
  top: 36px;
  width: min(250px, calc(100% - 68px));
  min-height: 130px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.identity-card i {
  position: relative !important;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.identity-pin {
  right: 46px;
  bottom: 44px;
  width: 54px;
  height: 54px;
  border: 3px solid var(--lime);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  box-shadow: 0 0 26px rgba(201, 239, 79, 0.3);
  animation: pinPulse 2.4s ease-in-out infinite;
}

.identity-pin::after {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: var(--lime);
}

.identity-scan {
  left: 34px;
  right: 34px;
  top: 88px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(228, 103, 1, 0.65);
  animation: identityScan 2.8s ease-in-out infinite;
}

.workflow-rail {
  left: 10%;
  right: 10%;
  top: 50%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.22);
}

.workflow-pulse {
  left: 10%;
  top: calc(50% - 8px);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.72);
  animation: workflowMove 4.4s ease-in-out infinite;
}

.workflow-step {
  width: 18px;
  height: 18px;
  display: grid !important;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 26px rgba(201, 239, 79, 0.45);
}

.workflow-step-a {
  left: 8%;
  top: 72px;
}

.workflow-step-b {
  left: 34%;
  top: 34px;
}

.workflow-step-c {
  right: 34%;
  top: 72px;
}

.workflow-step-d {
  right: 8%;
  top: 34px;
}

.bullet-list,
.legal-list {
  display: grid;
  gap: 12px;
  padding-left: 1.05rem;
}

.bullet-list li,
.legal-list li {
  line-height: 1.55;
}

.actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-band,
.final-cta,
.diagnostic {
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(23, 35, 42, 0.98), rgba(23, 35, 42, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px);
  color: var(--white);
}

.cta-band p,
.final-cta p,
.diagnostic p,
.contact-data p {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0, rgba(228, 103, 1, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(23, 35, 42, 0.98), rgba(23, 35, 42, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 58px);
}

.final-cta .contact-grid {
  align-items: start;
  margin-top: 26px;
}

.contact-data {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

form {
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.88);
}

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

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 35, 42, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

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

.mini-note {
  font-size: 13px;
}

.support-hero {
  width: min(calc(100% - 32px), var(--max));
  margin: clamp(28px, 5vw, 70px) auto 0;
}

.support-hero__stage {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 72vh, 780px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(26px, 5vw, 66px);
  padding: clamp(30px, 5vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 16%, rgba(228, 103, 1, 0.26), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(201, 239, 79, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(14, 22, 27, 0.98), rgba(31, 48, 56, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 64px);
  color: var(--white);
  box-shadow: 0 34px 90px rgba(23, 35, 42, 0.18);
  isolation: isolate;
}

.support-hero__stage::before,
.support-hero__stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.support-hero__stage::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 82%, transparent);
  animation: sectorsGridDrift 20s linear infinite;
}

.support-hero__stage::after {
  inset: 0;
  background: linear-gradient(100deg, transparent 0 30%, rgba(201, 239, 79, 0.18) 38%, transparent 48% 100%);
  transform: translateX(-120%);
  animation: scannerSweep 5.8s ease-in-out infinite;
}

.support-hero__copy,
.support-console {
  position: relative;
  z-index: 2;
}

.support-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.68);
}

.support-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
}

.support-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.7vw, 20px);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.support-actions .button-cool {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.support-console {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 440px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(23, 35, 42, 0.6);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.support-console__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.support-console__top span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.support-console__top strong {
  max-width: 180px;
  text-align: right;
  line-height: 1.12;
}

.support-line-map {
  position: relative;
  min-height: 260px;
}

.support-rail,
.support-machine,
.support-alert-dot,
.support-packet {
  position: absolute;
}

.support-rail {
  left: 4%;
  right: 4%;
  top: 50%;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--orange), var(--lime), var(--blue)),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 26px rgba(201, 239, 79, 0.26);
}

.support-machine {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  animation: supportMachineWake 3.6s ease-in-out infinite;
}

.support-machine--one {
  left: 0;
  top: 22%;
}

.support-machine--two {
  left: 30%;
  top: 54%;
  animation-delay: 300ms;
}

.support-machine--three {
  right: 29%;
  top: 20%;
  animation-delay: 600ms;
}

.support-machine--four {
  right: 0;
  top: 54%;
  animation-delay: 900ms;
}

.support-alert-dot {
  left: calc(30% + 56px);
  top: calc(54% - 8px);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(228, 103, 1, 0.62);
  animation: supportAlert 1.4s ease-in-out infinite;
}

.support-packet {
  left: 4%;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(201, 239, 79, 0.72);
  animation: supportPacket 4.2s ease-in-out infinite;
}

.support-packet--b {
  animation-delay: 1.7s;
}

.support-console__rows {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.support-console__rows span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.support-console__rows i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(201, 239, 79, 0.72);
}

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

.support-priority-card,
.support-process-step {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at 80% 10%, rgba(228, 103, 1, 0.18), transparent 36%);
  box-shadow: 0 18px 50px rgba(23, 35, 42, 0.08);
}

.support-priority-card:nth-child(1) {
  background:
    linear-gradient(145deg, rgba(23, 35, 42, 0.98), rgba(23, 35, 42, 0.82)),
    radial-gradient(circle at 80% 10%, rgba(228, 103, 1, 0.3), transparent 38%);
  color: var(--white);
}

.support-priority-card:nth-child(1) p {
  color: rgba(255, 255, 255, 0.78);
}

.support-priority-card span,
.support-process-step span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.support-request__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.support-request__intro {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(23, 35, 42, 0.98), rgba(23, 35, 42, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 46px);
  color: var(--white);
}

.support-request__intro h2 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
}

.support-request__intro p,
.support-checklist li {
  color: rgba(255, 255, 255, 0.78);
}

.support-contact-strip {
  display: grid;
  gap: 8px;
  margin: 24px 0;
}

.support-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.support-form {
  min-height: 100%;
}

.support-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
}

.support-process-step {
  min-height: 220px;
}

.support-process-step strong {
  display: block;
  margin: 42px 0 10px;
  font-size: 24px;
}

.legal-content {
  max-width: 920px;
  background: rgba(255, 255, 255, 0.86);
}

.legal-content h2 + p,
.legal-content p + h2,
.legal-content ul + h2 {
  margin-top: 22px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 18px;
  z-index: 100;
  width: min(1120px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 35, 42, 0.98), rgba(23, 35, 42, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 42px);
  color: var(--white);
  box-shadow: 0 28px 80px rgba(23, 35, 42, 0.3);
  transform: translateX(-50%);
}

.cookie-banner p,
.cookie-banner small {
  color: rgba(255, 255, 255, 0.78);
}

.cookie-banner a {
  color: var(--lime);
  font-weight: 900;
}

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

.cookie-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.language-switch {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.language-button {
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.language-button.active {
  background: var(--ink);
  color: var(--white);
}

.section-head > p:not(.label) {
  max-width: 780px;
}

.laser-layout,
.line-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 16px;
  align-items: stretch;
}

.laser-stage,
.machine-line,
.telemetry-panel,
.laser-check {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 35, 42, 0.16);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(23, 35, 42, 0.12);
}

.laser-stage {
  min-height: 470px;
  background:
    radial-gradient(circle at 42% 28%, rgba(228, 103, 1, 0.28), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(201, 239, 79, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(23, 35, 42, 0.98), rgba(23, 35, 42, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 56px);
  isolation: isolate;
}

.laser-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(255, 255, 255, 0.05) 32px 33px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(255, 255, 255, 0.04) 32px 33px);
  animation: stageDrift 10s linear infinite;
}

.laser-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 34%, rgba(201, 239, 79, 0.14) 42%, transparent 52%);
  transform: translateX(-130%);
  animation: scannerSweep 5.6s ease-in-out infinite;
}

.conveyor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 58px;
  height: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 12px, transparent 12px 34px);
  animation: conveyorMove 850ms linear infinite;
}

.laser-head {
  position: absolute;
  top: 58px;
  left: 48%;
  z-index: 3;
  width: 126px;
  min-height: 84px;
  display: grid;
  place-items: center;
  padding-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(226, 232, 229, 0.78)),
    linear-gradient(90deg, rgba(23, 35, 42, 0.08) 1px, transparent 1px) 0 0 / 18px 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.laser-head span {
  position: absolute;
  top: 14px;
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(228, 103, 1, 0.7);
}

.laser-beam {
  position: absolute;
  top: 136px;
  left: 48%;
  z-index: 2;
  width: 4px;
  height: 180px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(228, 103, 1, 0.95), transparent);
  box-shadow: 0 0 18px rgba(228, 103, 1, 0.92), 0 0 42px rgba(228, 103, 1, 0.55);
  transform: rotate(16deg);
  transform-origin: top;
  animation: laserPulse 1.25s ease-in-out infinite;
}

.vision-frame {
  position: absolute;
  right: 17%;
  bottom: 82px;
  z-index: 3;
  width: 126px;
  height: 156px;
  border: 2px solid var(--lime);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.36), inset 0 0 26px rgba(201, 239, 79, 0.14);
}

.vision-frame span {
  position: absolute;
  left: 50%;
  bottom: -34px;
  white-space: nowrap;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(201, 239, 79, 0.94);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  transform: translateX(-50%);
}

.product-pack {
  position: absolute;
  left: -180px;
  bottom: 92px;
  z-index: 2;
  width: 160px;
  height: 110px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #fbf7ef, #d9cec0),
    repeating-linear-gradient(90deg, rgba(23, 35, 42, 0.08) 0 1px, transparent 1px 20px);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
  animation: packMove 6.6s linear infinite;
}

.product-pack--delay {
  animation-delay: -3.25s;
}

.product-pack em {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 35, 42, 0.18);
  border-radius: 6px;
  background:
    repeating-linear-gradient(45deg, var(--ink) 0 4px, transparent 4px 8px),
    var(--white);
  color: transparent;
}

.product-pack span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  opacity: 0.18;
  animation: codeBurn 6.6s linear infinite;
}

.product-pack--delay span {
  animation-delay: -3.25s;
}

.laser-checks {
  display: grid;
  gap: 12px;
}

.laser-check {
  min-height: 148px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 100% 0, rgba(228, 103, 1, 0.15), transparent 46%);
}

.laser-check span,
.station span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.laser-check h3 {
  margin-top: 20px;
}

.machine-line {
  min-height: 560px;
  background:
    radial-gradient(circle at 22% 24%, rgba(228, 103, 1, 0.25), transparent 20%),
    radial-gradient(circle at 74% 70%, rgba(23, 107, 135, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(17, 27, 32, 0.98), rgba(38, 52, 60, 0.88)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 44px);
}

.machine-line::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.line-track {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.28);
  transform: translateY(-50%);
}

.line-track::before,
.line-track::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.28);
}

.line-track::before {
  top: -82px;
  transform: rotate(8deg);
}

.line-track::after {
  bottom: -82px;
  transform: rotate(-8deg);
}

.station {
  position: absolute;
  z-index: 2;
  width: 138px;
  min-height: 112px;
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.station strong {
  font-size: 15px;
  line-height: 1.15;
}

.station small {
  color: var(--muted);
  line-height: 1.35;
}

.station-order {
  left: 4%;
  top: 58px;
}

.station-mark {
  left: 20%;
  top: 214px;
}

.station-vision {
  left: 36%;
  top: 66px;
}

.station-reject {
  left: 50%;
  top: 250px;
}

.station-pallet {
  left: 64%;
  top: 90px;
}

.station-wrap {
  left: 75%;
  top: 266px;
}

.station-data {
  left: 82%;
  top: 70px;
}

.moving-product,
.data-orbit {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  pointer-events: none;
}

.moving-product {
  width: 18px;
  height: 18px;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.72);
  animation: productRoute 7s linear infinite;
}

.moving-product-b {
  animation-delay: -3.45s;
}

.data-orbit {
  width: 10px;
  height: 10px;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(228, 103, 1, 0.78);
  animation: dataRoute 4.8s linear infinite;
}

.data-orbit-b {
  animation-delay: -2.4s;
}

.telemetry-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 560px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(23, 35, 42, 0.98), rgba(23, 35, 42, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 42px);
  color: var(--white);
}

.telemetry-panel h3 {
  color: var(--white);
}

.telemetry-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
}

.telemetry-row strong {
  color: var(--lime);
}

.telemetry-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.telemetry-bar span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--lime));
  animation: barValue 2.5s ease-in-out infinite;
}

.cap-system {
  background:
    linear-gradient(145deg, rgba(23, 35, 42, 0.98), rgba(23, 35, 42, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px);
  color: var(--white);
}

.cap-system p {
  color: rgba(255, 255, 255, 0.78);
}

.capability-live {
  position: relative;
  min-height: 290px;
  background:
    radial-gradient(circle at 30% 32%, rgba(228, 103, 1, 0.24), transparent 25%),
    radial-gradient(circle at 74% 72%, rgba(201, 239, 79, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 44px 44px;
}

.capability-live::before,
.capability-live::after {
  content: "";
  position: absolute;
  inset: 50% 12%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  box-shadow: 0 0 24px rgba(201, 239, 79, 0.26);
}

.capability-live::after {
  transform: rotate(34deg);
  opacity: 0.6;
}

.cap-node {
  position: absolute;
  z-index: 2;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(201, 239, 79, 0.12);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.cap-node-a {
  left: 10%;
  top: 20%;
}

.cap-node-b {
  right: 13%;
  top: 18%;
  animation-delay: 300ms;
}

.cap-node-c {
  left: 18%;
  bottom: 16%;
  animation-delay: 600ms;
}

.cap-node-d {
  right: 18%;
  bottom: 17%;
  animation-delay: 900ms;
}

@keyframes scannerSweep {
  0%,
  45% {
    transform: translateX(-120%);
  }

  78%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes pageHeroFade {
  0% {
    opacity: 1;
    transform: scale(1.02);
  }

  10%,
  45% {
    opacity: 1;
  }

  56%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes stageDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 66px, 66px 0;
  }
}

@keyframes conveyorMove {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, 34px 0;
  }
}

@keyframes laserPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: rotate(11deg) scaleY(0.62);
  }

  44%,
  58% {
    opacity: 1;
    transform: rotate(18deg) scaleY(1);
  }
}

@keyframes packMove {
  0% {
    left: -190px;
  }

  100% {
    left: calc(100% + 190px);
  }
}

@keyframes codeBurn {
  0%,
  34% {
    opacity: 0.12;
    filter: blur(1px);
  }

  43%,
  70% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 0.72;
  }
}

@keyframes productRoute {
  0% {
    left: 4%;
    top: 142px;
  }

  18% {
    left: 21%;
    top: 298px;
  }

  34% {
    left: 38%;
    top: 144px;
  }

  52% {
    left: 53%;
    top: 328px;
  }

  69% {
    left: 67%;
    top: 172px;
  }

  86% {
    left: 80%;
    top: 346px;
  }

  100% {
    left: 90%;
    top: 154px;
  }
}

@keyframes dataRoute {
  0% {
    left: 8%;
    top: 270px;
    opacity: 0;
  }

  15%,
  82% {
    opacity: 1;
  }

  100% {
    left: 88%;
    top: 270px;
    opacity: 0;
  }
}

@keyframes barValue {
  0%,
  100% {
    filter: brightness(0.92);
  }

  50% {
    filter: brightness(1.24);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.22);
  }

  50% {
    transform: scale(1.06);
    border-color: rgba(201, 239, 79, 0.72);
  }
}

@keyframes serviceNode {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.32);
    opacity: 1;
  }
}

@keyframes endlineCase {
  0% {
    transform: translateX(0);
  }

  68% {
    transform: translateX(235px);
  }

  100% {
    transform: translateX(235px) translateY(-28px) scale(0.86);
    opacity: 0;
  }
}

@keyframes wrapOrbit {
  from {
    transform: rotate(0deg) scaleX(0.82);
  }

  to {
    transform: rotate(360deg) scaleX(0.82);
  }
}

@keyframes serviceBars {
  0%,
  100% {
    transform: scaleY(0.78);
  }

  50% {
    transform: scaleY(1.08);
  }
}

@keyframes dataFloat {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.45;
  }

  50% {
    transform: translate(-22px, -18px);
    opacity: 1;
  }
}

@keyframes terminalLine {
  0%,
  100% {
    transform: scaleX(0.52);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
  }
}

@keyframes satPulse {
  0%,
  100% {
    transform: scaleX(0.88);
    opacity: 0.58;
  }

  50% {
    transform: scaleX(1.08);
    opacity: 1;
  }
}

@keyframes sectorTravel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(440px);
  }
}

@keyframes vialCheck {
  0%,
  100% {
    transform: translateY(0);
    filter: brightness(0.92);
  }

  50% {
    transform: translateY(-8px);
    filter: brightness(1.18);
  }
}

@keyframes routeGrow {
  0%,
  100% {
    opacity: 0.48;
    filter: brightness(0.9);
  }

  50% {
    opacity: 1;
    filter: brightness(1.25);
  }
}

@keyframes sectorFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes robotSweepA {
  0%,
  100% {
    transform: rotate(-38deg);
  }

  50% {
    transform: rotate(-18deg);
  }
}

@keyframes robotSweepB {
  0%,
  100% {
    transform: rotate(42deg);
  }

  50% {
    transform: rotate(18deg);
  }
}

@keyframes bottlePass {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(430px);
  }
}

@keyframes labelScan {
  0%,
  100% {
    transform: translateX(-36px);
    opacity: 0.48;
  }

  50% {
    transform: translateX(36px);
    opacity: 1;
  }
}

@keyframes pipeFlow {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 160px 0;
  }
}

@keyframes pinPulse {
  0%,
  100% {
    transform: rotate(-45deg) scale(0.96);
  }

  50% {
    transform: rotate(-45deg) scale(1.08);
  }
}

@keyframes identityScan {
  0%,
  100% {
    transform: translateY(-38px);
  }

  50% {
    transform: translateY(62px);
  }
}

@keyframes workflowMove {
  0% {
    left: 10%;
  }

  33% {
    left: 36%;
  }

  66% {
    left: 62%;
  }

  100% {
    left: 88%;
  }
}

@keyframes sectorsGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 104px 52px, 52px 104px;
  }
}

@keyframes serviceBlueprintDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 140px 70px, 70px 140px, 180px 180px;
  }
}

@keyframes servicePackTravel {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  12%,
  82% {
    opacity: 1;
  }

  100% {
    transform: translateX(240px);
    opacity: 0;
  }
}

@keyframes serviceLaserPulse {
  0%,
  100% {
    opacity: 0.32;
    filter: saturate(1);
  }

  50% {
    opacity: 1;
    filter: saturate(1.5);
  }
}

@keyframes serviceReaderScan {
  0%,
  100% {
    transform: scale(0.78);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

@keyframes serviceWrapOrbit {
  from {
    transform: rotate(-15deg);
  }

  to {
    transform: rotate(345deg);
  }
}

@keyframes sectorCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes sectorMapPulse {
  0% {
    transform: translateX(0) scale(0.85);
    opacity: 0;
  }

  12%,
  82% {
    opacity: 1;
  }

  100% {
    transform: translateX(520px) scale(1.04);
    opacity: 0;
  }
}

@keyframes companyRoutePulse {
  0%,
  100% {
    filter: saturate(1);
    opacity: 0.68;
  }

  50% {
    filter: saturate(1.6);
    opacity: 1;
  }
}

@keyframes heroNodePulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  }

  50% {
    transform: translateY(-10px);
    box-shadow: 0 26px 54px rgba(201, 239, 79, 0.22);
  }
}

@keyframes heroSignalMove {
  0% {
    transform: translateX(0) scale(0.8);
    opacity: 0;
  }

  12%,
  78% {
    opacity: 1;
  }

  100% {
    transform: translateX(280px) scale(1.08);
    opacity: 0;
  }
}

@keyframes heroTokenFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

@keyframes heroDataSweep {
  0% {
    transform: translateX(-42%) scaleX(0.42);
    opacity: 0;
  }

  20%,
  78% {
    opacity: 1;
  }

  100% {
    transform: translateX(42%) scaleX(1);
    opacity: 0;
  }
}

@keyframes processPanelSweep {
  0% {
    transform: translateX(-48%);
  }

  100% {
    transform: translateX(48%);
  }
}

@keyframes processRailFlow {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes processStationFocus {
  0%,
  22%,
  100% {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
    transform: translateY(0);
  }

  8%,
  14% {
    border-color: rgba(201, 239, 79, 0.54);
    box-shadow: 0 22px 58px rgba(201, 239, 79, 0.18);
    transform: translateY(-3px);
  }
}

@keyframes processPackJourney {
  0% {
    left: 7%;
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  22% {
    left: 23%;
  }

  44% {
    left: 47%;
  }

  66% {
    left: 69%;
  }

  90% {
    left: calc(93% - 62px);
    opacity: 1;
  }

  100% {
    left: calc(93% - 62px);
    opacity: 0;
  }
}

@keyframes processDataBurst {
  0%,
  68%,
  100% {
    opacity: 0;
    transform: scaleX(0.24);
  }

  8%,
  24% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes sectorRequirementFocus {
  0%,
  16%,
  100% {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.09);
  }

  5%,
  10% {
    border-color: rgba(201, 239, 79, 0.42);
    background: rgba(201, 239, 79, 0.1);
  }
}

@keyframes sectorRequirementScan {
  0%,
  100% {
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
  }

  5% {
    opacity: 1;
  }

  14% {
    opacity: 0;
    transform: translateX(420%) skewX(-18deg);
  }
}

@keyframes companyDossierSignal {
  0%,
  100% {
    transform: scaleX(0.3);
    opacity: 0.5;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes companyMethodFocus {
  0%,
  28%,
  100% {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(0);
  }

  8%,
  18% {
    border-color: rgba(201, 239, 79, 0.42);
    background: rgba(201, 239, 79, 0.1);
    transform: translateX(5px);
  }
}

@keyframes companyMethodLine {
  0% {
    transform: scaleY(0);
  }

  82%,
  100% {
    transform: scaleY(1);
  }
}

@keyframes companyHeroScan {
  0%,
  100% {
    transform: translateY(-82px);
    opacity: 0.45;
  }

  50% {
    transform: translateY(118px);
    opacity: 1;
  }
}

@keyframes supportMachineWake {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.18);
  }

  50% {
    transform: translateY(-8px);
    border-color: rgba(201, 239, 79, 0.62);
  }
}

@keyframes supportAlert {
  0% {
    transform: scale(0.88);
    box-shadow: 0 0 0 0 rgba(228, 103, 1, 0.62);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 18px rgba(228, 103, 1, 0);
  }

  100% {
    transform: scale(0.88);
    box-shadow: 0 0 0 0 rgba(228, 103, 1, 0);
  }
}

@keyframes supportPacket {
  0% {
    transform: translateX(0) scale(0.8);
    opacity: 0;
  }

  12%,
  82% {
    opacity: 1;
  }

  100% {
    transform: translateX(310px) scale(1.08);
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .laser-layout,
  .line-dashboard {
    grid-template-columns: 1fr;
  }

  .support-hero__stage,
  .support-request__panel {
    grid-template-columns: 1fr;
  }

  .support-console {
    min-height: 380px;
  }

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

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

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

@media (max-width: 820px) {
  .nav a,
  .nav .button {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .service-grid,
  .route-grid,
  .steps,
  .tech-list,
  .contact-grid,
  .form-grid,
  .intro-grid,
  .laser-layout,
  .line-dashboard,
  .problem-layout,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__stage,
  .page-hero > .container:not(:has(.page-hero__stage)) {
    min-height: 500px;
  }

  .page-hero__visual {
    right: 18px;
    top: auto;
    bottom: 18px;
    width: min(420px, 72%);
    height: 42%;
    opacity: 0.34;
  }

  .page-hero--services .page-hero__visual,
  .page-hero--sectors .page-hero__visual,
  .page-hero--company .page-hero__visual {
    display: none;
  }

  .page-hero--services .page-hero__content,
  .page-hero--sectors .page-hero__content,
  .page-hero--company .page-hero__content {
    max-width: none;
    padding-bottom: 0;
  }

  .page-hero__content {
    max-width: none;
  }

  .support-hero {
    width: min(calc(100% - 20px), var(--max));
  }

  .support-hero__stage {
    min-height: auto;
    padding: 26px;
  }

  .support-hero h1 {
    font-size: clamp(42px, 11vw, 72px);
  }

  .support-priority-grid,
  .support-process {
    grid-template-columns: 1fr;
  }

  .support-request__panel {
    width: min(calc(100% - 20px), var(--max));
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .footer-access,
  .footer-subline {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container,
  .section,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 20px), var(--max));
  }

  h1,
  .page-hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
  }

  .brand,
  .topbar .brand,
  .site-header .brand {
    justify-items: center;
    text-align: center;
  }

  .site-header .brand img,
  .topbar .brand img {
    width: 86px;
    height: 86px;
  }

  .page-hero {
    padding-top: 20px;
  }

  .page-hero__visual {
    display: none;
  }

  .support-hero__stage {
    padding: 20px;
  }

  .support-actions {
    display: grid;
  }

  .support-console {
    min-height: 320px;
    padding: 18px;
  }

  .support-console__top {
    display: grid;
  }

  .support-console__top strong {
    max-width: none;
    text-align: left;
  }

  .support-line-map {
    min-height: 230px;
  }

  .support-machine {
    width: 58px;
    height: 58px;
    font-size: 10px;
  }

  .support-request__intro,
  .support-priority-card,
  .support-process-step {
    padding: 22px;
  }

  .cookie-banner {
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .laser-stage {
    min-height: 410px;
  }

  .laser-head {
    left: 50%;
    width: 110px;
  }

  .vision-frame {
    right: 24px;
    width: 96px;
  }

  .product-pack {
    width: 138px;
    height: 98px;
    grid-template-columns: 44px 1fr;
  }

  .product-pack em {
    width: 38px;
    height: 38px;
  }

  .machine-line {
    min-height: 0;
    display: grid;
    gap: 10px;
    padding: 20px;
  }

  .line-track,
  .moving-product,
  .data-orbit {
    display: none;
  }

  .station {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 0;
  }

  .telemetry-panel {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .machine-line {
    min-height: 0;
    display: grid;
    gap: 10px;
    padding: 20px;
  }

  .line-track,
  .moving-product,
  .data-orbit {
    display: none;
  }

  .station {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 0;
  }

  .telemetry-panel {
    min-height: 0;
  }
}

/* 20260501c: heroes reales a pantalla completa y catálogo de productos */
.hero-slide-a {
  background-image: url("assets/heroes/hero-home-line.jpg");
  background-position: 58% center;
  animation: none;
  transform: none;
}

.page-hero {
  width: 100%;
  padding: 0;
}

.page-hero .container {
  width: 100%;
  max-width: none;
}

.page-hero__stage {
  min-height: clamp(560px, calc(100vh - 112px), 760px);
  align-items: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-hero > .container:not(:has(.page-hero__stage)) {
  min-height: clamp(320px, 42vh, 460px);
  align-items: center;
  border-radius: 0;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
}

.page-hero__content,
.page-hero--services .page-hero__content,
.page-hero--sectors .page-hero__content,
.page-hero--company .page-hero__content {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: clamp(72px, 11vw, 138px) 0 clamp(54px, 8vw, 112px);
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(52px, 8vw, 112px);
}

.page-hero p,
.page-hero .breadcrumbs {
  max-width: 760px;
}

.page-hero__visual,
.page-hero--services .page-hero__visual,
.page-hero--sectors .page-hero__visual,
.page-hero--company .page-hero__visual {
  display: none !important;
}

.page-hero__slide {
  opacity: 1;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  animation: none;
  transform: none;
}

.page-hero__slide:nth-child(n + 2) {
  display: none;
}

.page-hero__overlay {
  background:
    radial-gradient(circle at 14% 24%, rgba(228, 103, 1, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(6, 11, 14, 0.92), rgba(6, 11, 14, 0.62) 50%, rgba(6, 11, 14, 0.18) 76%, rgba(6, 11, 14, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.065) 0 1px, transparent 1px 78px);
}

.page-hero--services {
  --hero-image: url("assets/heroes/hero-services-line.jpg");
  --hero-position: center;
}

.page-hero--products {
  --hero-image: url("assets/heroes/hero-products-scanning.jpg");
  --hero-position: center;
}

.page-hero--sectors {
  --hero-image: url("assets/heroes/hero-sectors-logistics.jpg");
  --hero-position: center 55%;
}

.page-hero--company {
  --hero-image: url("assets/heroes/hero-company-engineering.jpg");
  --hero-position: 72% center;
}

.page-hero--contact {
  --hero-image: url("assets/heroes/hero-contact-warehouse.jpg");
  --hero-position: center;
}

.page-hero--automation {
  --hero-image: url("assets/heroes/hero-automation-factory.jpg");
  --hero-position: center;
}

.page-hero--coding {
  --hero-image: url("assets/heroes/hero-coding-scanner.jpg");
  --hero-position: center;
}

.page-hero--software {
  --hero-image: url("assets/heroes/hero-software-control.jpg");
  --hero-position: center;
}

.page-hero--support {
  --hero-image: url("assets/heroes/hero-maintenance-scanner.jpg");
  --hero-position: center;
}

.page-hero--support .page-hero__overlay,
.page-hero--contact .page-hero__overlay {
  background:
    radial-gradient(circle at 16% 28%, rgba(228, 103, 1, 0.26), transparent 28%),
    linear-gradient(90deg, rgba(6, 11, 14, 0.94), rgba(6, 11, 14, 0.66) 50%, rgba(6, 11, 14, 0.24) 78%, rgba(6, 11, 14, 0.12));
}

.support-hero {
  width: 100%;
  max-width: none;
  margin: 0;
}

.support-hero__stage {
  min-height: clamp(620px, calc(100vh - 112px), 780px);
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(228, 103, 1, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(6, 11, 14, 0.94), rgba(6, 11, 14, 0.72) 48%, rgba(6, 11, 14, 0.26) 78%, rgba(6, 11, 14, 0.14)),
    url("assets/heroes/hero-sat-technical.jpg") center / cover no-repeat;
  box-shadow: none;
}

.support-console {
  min-height: 430px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(13, 22, 27, 0.72);
}

.support-line-map {
  min-height: 250px;
}

.support-machine {
  animation: supportMachineWake 4.6s ease-in-out infinite;
}

.support-machine--one {
  left: 3%;
  top: 34%;
}

.support-machine--two {
  left: 31%;
  top: 34%;
}

.support-machine--three {
  right: 31%;
  top: 34%;
}

.support-machine--four {
  right: 3%;
  top: 34%;
}

.support-alert-dot {
  left: calc(31% + 64px);
  top: calc(50% - 5px);
}

.product-family-section .section-head,
.product-line-section .container {
  width: min(calc(100% - 48px), var(--max));
}

.product-family-grid {
  width: min(calc(100% - 48px), var(--max));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-family-card {
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-content: start;
  padding: 0 26px 28px;
  border: 1px solid rgba(23, 35, 42, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(23, 35, 42, 0.1);
}

.product-family-card__top {
  position: relative;
  height: 210px;
  margin: 0 -26px 26px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 75% 38%, rgba(201, 239, 79, 0.22), transparent 24%),
    linear-gradient(135deg, #17232a, #26343c);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.product-family-card h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 2.5vw, 34px);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.product-tags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(23, 35, 42, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.product-scanline,
.product-code-card,
.product-reader-frame,
.product-pallet,
.product-wrap,
.product-belt,
.product-dashboard,
.product-data-node,
.product-data-line {
  position: absolute;
}

.product-scanline {
  left: 8%;
  right: 8%;
  top: 52%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  animation: productScan 3.4s ease-in-out infinite;
}

.product-code-card {
  left: 12%;
  top: 28%;
  width: 90px;
  height: 100px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.product-reader-frame {
  right: 12%;
  bottom: 24px;
  width: 128px;
  height: 82px;
  display: grid;
  place-items: end center;
  padding-bottom: 10px;
  border: 2px solid var(--lime);
  border-radius: 8px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(201, 239, 79, 0.28);
}

.product-pallet {
  left: 12%;
  bottom: 26px;
  width: 118px;
  height: 84px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.32) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.product-wrap {
  left: 26%;
  bottom: 18px;
  width: 132px;
  height: 132px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  transform: rotate(-18deg);
  animation: productWrap 5s linear infinite;
}

.product-belt {
  right: 10%;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
}

.product-belt--one {
  top: 46%;
  width: 52%;
}

.product-belt--two {
  top: 60%;
  width: 38%;
  opacity: 0.62;
}

.product-dashboard {
  left: 11%;
  top: 28px;
  width: 156px;
  height: 118px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.product-dashboard i {
  border-radius: 7px;
  background: linear-gradient(135deg, var(--orange), var(--lime));
}

.product-data-node {
  width: 72px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.product-data-node--one {
  right: 13%;
  top: 38px;
}

.product-data-node--two {
  right: 22%;
  bottom: 38px;
}

.product-data-line {
  left: 38%;
  right: 16%;
  top: 50%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  animation: productPulse 4.2s ease-in-out infinite;
}

.product-line-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  min-height: 430px;
  padding: clamp(30px, 5vw, 64px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 28%, rgba(201, 239, 79, 0.18), transparent 24%),
    linear-gradient(135deg, #17232a, #26343c);
  color: var(--white);
}

.product-line-panel h2 {
  color: var(--white);
}

.product-line-map {
  position: relative;
  min-height: 280px;
}

.product-line-rail,
.product-line-station,
.product-line-pulse {
  position: absolute;
}

.product-line-rail {
  left: 4%;
  right: 4%;
  top: 50%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
}

.product-line-station {
  width: 96px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.product-line-station--mark {
  left: 0;
  top: 16%;
}

.product-line-station--vision {
  left: 30%;
  bottom: 14%;
}

.product-line-station--label {
  right: 30%;
  top: 16%;
}

.product-line-station--pallet {
  right: 0;
  bottom: 14%;
}

.product-line-pulse {
  left: 4%;
  top: calc(50% - 7px);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 26px rgba(201, 239, 79, 0.72);
  animation: supportPacket 4.8s ease-in-out infinite;
}

.cta-band--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band--split h2 {
  margin-bottom: 12px;
}

.cta-band--split .button {
  flex: 0 0 auto;
}

@keyframes productScan {
  0%,
  100% {
    transform: scaleX(0.45);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes productWrap {
  to {
    transform: rotate(342deg);
  }
}

@keyframes productPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(201, 239, 79, 0);
  }
  50% {
    box-shadow: 0 0 30px rgba(201, 239, 79, 0.36);
  }
}

@media (max-width: 980px) {
  .page-hero__content,
  .page-hero--services .page-hero__content,
  .page-hero--sectors .page-hero__content,
  .page-hero--company .page-hero__content {
    width: min(calc(100% - 32px), var(--max));
  }

  .support-hero__stage,
  .product-line-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .page-hero__stage,
  .support-hero__stage {
    min-height: 620px;
  }

  .page-hero > .container:not(:has(.page-hero__stage)) {
    min-height: 360px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .support-hero__stage {
    padding: 28px 18px;
  }

  .product-family-grid,
  .product-family-section .section-head,
  .product-line-section .container {
    width: min(calc(100% - 20px), var(--max));
  }

  .product-line-panel {
    padding: 24px;
  }

  .product-line-map,
  .product-family-card__top {
    min-height: 240px;
  }

  .cta-band--split {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Ajuste global 20260502c: cabecera, escala, ritmo y estabilidad visual */
body {
  background:
    radial-gradient(circle at 12% 4%, rgba(228, 103, 1, 0.14), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(23, 107, 135, 0.09), transparent 26%),
    linear-gradient(90deg, rgba(23, 35, 42, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #fbfbf6 0%, #edf1ec 100%);
}

body::before {
  opacity: 0.62;
  transform: none;
}

.reveal-ready,
.reveal {
  transition-duration: 460ms;
}

.site-header,
.topbar {
  transition:
    padding 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled,
.topbar.is-scrolled {
  background: rgba(248, 248, 244, 0.94);
  box-shadow: 0 16px 42px rgba(23, 35, 42, 0.1);
}

.site-header.is-scrolled .header-inner {
  padding-block: 10px;
}

.topbar.is-scrolled {
  padding-block: 10px;
}

.site-header .brand img,
.topbar .brand img {
  transition:
    width 180ms ease,
    height 180ms ease,
    padding 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled .brand img,
.topbar.is-scrolled .brand img {
  width: 56px;
  height: 56px;
  padding: 6px;
}

.brand-mark,
.brand strong {
  font-size: 30px;
}

h1 {
  max-width: 1080px;
  font-size: 92px;
  line-height: 1.02;
}

h2 {
  font-size: 58px;
  line-height: 1.05;
}

h3 {
  line-height: 1.14;
}

.hero {
  min-height: min(860px, calc(100svh - 104px));
  align-items: center;
}

.hero-content {
  width: min(1120px, 100%);
}

.hero h1 {
  max-width: 1080px;
}

.hero-copy,
.page-hero p,
.support-hero p {
  line-height: 1.55;
}

.page-hero__content {
  width: min(1240px, calc(100% - 48px));
}

.page-hero h1 {
  max-width: 1040px;
  font-size: 84px;
  line-height: 1.03;
}

.support-hero h1 {
  font-size: 82px;
  line-height: 1.03;
}

.page-hero p,
.page-hero .breadcrumbs,
.support-hero p {
  font-size: 18px;
}

.diagnostic h3 {
  font-size: 44px;
}

.support-request__intro h2 {
  font-size: 50px;
}

.product-family-card h3 {
  font-size: 30px;
}

.section,
.final-cta,
.support-request,
.support-process {
  padding-block: 64px;
}

.laser-lab,
.line-map,
.method-lab,
.product-family-section,
.product-line-section {
  padding-top: 48px;
}

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

.label,
.eyebrow,
.kicker {
  min-height: 32px;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  margin-bottom: 14px;
  line-height: 1.12;
}

.intro-grid {
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.intro-copy {
  max-width: 980px;
}

.intro-copy h2 {
  max-width: 960px;
}

.intro-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.mini-card,
.flow-step,
.step,
.support-process-step {
  display: grid;
  align-content: start;
  min-height: 238px;
}

.mini-card h3,
.flow-step strong,
.step h3,
.support-process-step strong {
  line-height: 1.16;
}

.flow-rail {
  align-items: stretch;
}

.flow-step {
  gap: 12px;
}

.flow-step span {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 4px 8px;
  border: 1px solid rgba(228, 103, 1, 0.24);
  border-radius: 999px;
  background: rgba(228, 103, 1, 0.08);
  color: var(--orange);
  font-size: 11px;
  line-height: 1;
}

.flow-step strong {
  display: block;
  font-size: 21px;
}

.problem-layout {
  align-items: stretch;
}

.problem-switch {
  align-content: start;
}

.problem-switch button {
  min-height: 64px;
  text-align: left;
}

.diagnostic {
  min-height: 430px;
  display: grid;
  grid-template-rows: auto auto minmax(104px, 1fr) auto auto;
  align-content: start;
}

#diagnostic-label {
  min-height: 32px;
}

#diagnostic-title {
  min-height: 96px;
}

#diagnostic-copy {
  min-height: 104px;
}

.form-grid > *,
label,
input,
select,
textarea {
  min-width: 0;
}

input,
select,
textarea {
  max-width: 100%;
}

select {
  text-overflow: ellipsis;
}

.contact-panel {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(230px, 1fr);
  gap: 26px;
}

.contact-signal {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 26%, rgba(201, 239, 79, 0.22), transparent 22%),
    radial-gradient(circle at 20% 72%, rgba(228, 103, 1, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.contact-signal__grid,
.contact-signal__rail,
.contact-signal__node,
.contact-signal__pulse {
  position: absolute;
}

.contact-signal__grid {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 44px 44px;
  opacity: 0.55;
}

.contact-signal__rail {
  left: 12%;
  right: 12%;
  top: 54%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--lime), var(--blue));
  box-shadow: 0 0 28px rgba(201, 239, 79, 0.24);
}

.contact-signal__node {
  min-width: 78px;
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.contact-signal__node--line {
  left: 12%;
  top: 26%;
}

.contact-signal__node--data {
  left: 46%;
  bottom: 18%;
}

.contact-signal__node--sat {
  right: 10%;
  top: 22%;
  border-color: rgba(201, 239, 79, 0.42);
}

.contact-signal__pulse {
  left: 12%;
  top: calc(54% - 7px);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 26px rgba(201, 239, 79, 0.72);
  animation: contactSignalPulse 4.8s ease-in-out infinite;
}

@keyframes contactSignalPulse {
  0% {
    left: 12%;
  }
  48% {
    left: calc(88% - 18px);
  }
  100% {
    left: 12%;
  }
}

@media (min-width: 1181px) {
  .hero-content {
    padding-left: 0;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 74px;
  }

  h2 {
    font-size: 50px;
  }

  .page-hero h1,
  .support-hero h1 {
    font-size: 70px;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: stretch;
    gap: 10px 14px;
    padding: 10px 14px;
  }

  .site-header .brand,
  .topbar .brand {
    display: flex;
    justify-items: normal;
    gap: 10px;
    text-align: left;
  }

  .site-header .brand img,
  .topbar .brand img {
    width: 48px;
    height: 48px;
    padding: 5px;
  }

  .brand-mark,
  .brand strong {
    font-size: 22px;
  }

  .brand-name,
  .brand small {
    font-size: 8.5px;
    letter-spacing: 0.08em;
  }

  .site-header.is-scrolled .header-inner,
  .topbar.is-scrolled {
    padding-block: 6px;
  }

  .site-header.is-scrolled .brand img,
  .topbar.is-scrolled .brand img {
    width: 38px;
    height: 38px;
    padding: 4px;
  }

  .site-header.is-scrolled .brand-name,
  .topbar.is-scrolled .brand small {
    display: none;
  }

  h1,
  .page-hero h1,
  .support-hero h1 {
    font-size: 46px;
    line-height: 1.07;
  }

  h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero {
    min-height: min(760px, calc(100svh - 64px));
    padding: 24px 18px;
  }

  .hero-status {
    display: none;
  }

  .page-hero__content {
    width: min(calc(100% - 28px), var(--max));
  }

  .section,
  .final-cta,
  .support-request,
  .support-process {
    padding-block: 44px;
  }

  .intro-points {
    grid-template-columns: 1fr;
  }

  .mini-card,
  .flow-step,
  .step,
  .support-process-step {
    min-height: auto;
  }

  .diagnostic {
    min-height: 390px;
  }

  .diagnostic h3 {
    font-size: 34px;
  }

  .page-hero p,
  .page-hero .breadcrumbs,
  .support-hero p {
    font-size: 16px;
  }

  .support-request__intro h2 {
    font-size: 36px;
  }

  .product-family-card h3 {
    font-size: 26px;
  }

  #diagnostic-title {
    min-height: 70px;
  }

  #diagnostic-copy {
    min-height: 128px;
  }

  .contact-panel {
    grid-template-rows: auto minmax(220px, 1fr);
  }
}

@media (max-width: 560px) {
  .container,
  .section,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 20px), var(--max));
  }

  h1,
  .page-hero h1,
  .support-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .brand-mark,
  .brand strong {
    font-size: 20px;
  }

  .brand-name,
  .brand small {
    display: none;
  }

  .page-hero__stage,
  .support-hero__stage {
    min-height: 520px;
  }

  .contact-signal {
    min-height: 220px;
  }

  .contact-signal__node {
    min-width: 66px;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 10px;
  }

  .contact-signal__node--data {
    left: 36%;
  }

  @keyframes contactSignalPulse {
    0% {
      left: 12%;
    }
    48% {
      left: calc(88% - 18px);
    }
    100% {
      left: 12%;
    }
  }
}

/* 20260502c: capa final de estabilidad visual. Mantener al final del archivo. */
:root {
  --type-hero-final: 5rem;
  --type-page-final: 4.7rem;
  --type-section-final: 3.25rem;
  --type-card-final: 1.85rem;
  --section-pad-final: 4.25rem;
}

html {
  scroll-padding-top: 112px;
}

body {
  background:
    radial-gradient(circle at 16% 7%, rgba(228, 103, 1, 0.16), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(22, 122, 142, 0.12), transparent 28%),
    linear-gradient(118deg, rgba(228, 103, 1, 0.075) 0 11%, transparent 11.4% 47%, rgba(22, 122, 142, 0.06) 47.4% 59%, transparent 59.4% 100%),
    repeating-linear-gradient(112deg, rgba(23, 35, 42, 0.045) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #fbfaf5 0%, #eef2ec 100%);
}

body::before {
  opacity: 0.7;
  transform: none !important;
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(228, 103, 1, 0.13) 22.05% 22.28%, transparent 22.52% 100%),
    linear-gradient(115deg, transparent 0 69%, rgba(22, 122, 142, 0.1) 69.04% 69.22%, transparent 69.46% 100%),
    radial-gradient(ellipse at 52% 38%, rgba(255, 255, 255, 0.52), transparent 54%);
}

body::after {
  height: 24vh;
  background: linear-gradient(180deg, transparent, rgba(23, 35, 42, 0.045));
}

.page-hero__stage,
.support-hero__stage {
  min-height: min(760px, calc(100svh - 96px));
}

.page-hero__overlay,
.hero-shade {
  background:
    radial-gradient(circle at 16% 28%, rgba(228, 103, 1, 0.26), transparent 28%),
    linear-gradient(90deg, rgba(6, 11, 14, 0.94), rgba(6, 11, 14, 0.66) 50%, rgba(6, 11, 14, 0.22) 78%, rgba(6, 11, 14, 0.08)),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 54px);
}

h1,
h2,
h3,
.hero h1,
.page-hero h1,
.support-hero h1,
.diagnostic h3,
.support-request__intro h2,
.product-family-card h3 {
  max-width: 100%;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

p,
li,
.hero-copy,
.page-hero p,
.support-hero p {
  text-wrap: pretty;
}

h1,
.hero h1 {
  max-inline-size: 12.8ch;
  font-size: var(--type-hero-final);
  line-height: 1.13;
}

.page-hero h1,
.support-hero h1 {
  max-inline-size: 15ch;
  font-size: var(--type-page-final);
  line-height: 1.13;
}

h2,
.support-request__intro h2,
.cta-band--split h2 {
  max-inline-size: 16ch;
  font-size: var(--type-section-final);
  line-height: 1.14;
}

h3,
.product-family-card h3 {
  line-height: 1.18;
}

.hero {
  min-height: min(820px, calc(100svh - 96px));
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  padding-block: 56px;
}

.hero-copy,
.page-hero p,
.support-hero p {
  max-inline-size: 760px;
  line-height: 1.58;
}

.page-hero__content,
.page-hero--services .page-hero__content,
.page-hero--sectors .page-hero__content,
.page-hero--company .page-hero__content {
  width: min(1180px, calc(100% - 48px));
  padding-block: 7rem 5.5rem;
}

.section,
.final-cta,
.support-request,
.support-process {
  padding-block: var(--section-pad-final);
}

.laser-lab,
.line-map,
.method-lab,
.product-family-section,
.product-line-section {
  padding-top: var(--section-pad-final);
}

.section-head {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  margin-bottom: 2rem;
  gap: 0.9rem;
}

.section-head > p:not(.label) {
  max-inline-size: 720px;
  line-height: 1.58;
}

.label,
.eyebrow,
.kicker {
  min-height: auto;
  letter-spacing: 0.11em;
  line-height: 1.15;
}

.flow-rail,
.route-grid,
.laser-layout,
.line-dashboard,
.problem-layout {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.flow-rail {
  gap: 14px;
}

.flow-step,
.mini-card,
.step,
.support-process-step {
  min-height: 0;
}

.flow-step {
  padding: 52px 20px 24px;
}

.flow-step strong {
  font-size: 1.15rem;
  line-height: 1.2;
}

.flow-step p {
  line-height: 1.5;
}

.contact-grid {
  width: min(calc(100% - 48px), var(--max));
  grid-template-columns: minmax(320px, 0.82fr) minmax(500px, 1.18fr);
  gap: 24px;
  align-items: stretch;
  margin-inline: auto;
}

.final-cta .contact-grid {
  width: 100%;
}

.contact-data,
.contact-panel,
form {
  border-radius: 8px;
}

form {
  align-self: stretch;
  gap: 20px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

form label,
form .mini-note,
form legend {
  color: var(--ink);
}

form input,
form select,
form textarea {
  color: var(--ink);
}

form input::placeholder,
form textarea::placeholder {
  color: var(--muted);
}

form::before,
.contact-data::before,
.cta-band::before {
  background:
    linear-gradient(112deg, transparent, rgba(228, 103, 1, 0.08), transparent),
    repeating-linear-gradient(112deg, rgba(23, 35, 42, 0.035) 0 1px, transparent 1px 44px);
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  align-items: start;
}

.form-grid > *,
label,
input,
select,
textarea {
  min-width: 0;
}

.form-grid label:has(input[type="email"]),
.form-grid label:has(textarea),
.form-grid label.full {
  grid-column: 1 / -1;
}

label {
  gap: 9px;
  font-size: 0.98rem;
  line-height: 1.25;
}

input,
select,
textarea {
  max-width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border-color: rgba(23, 35, 42, 0.2);
  background: rgba(255, 255, 255, 0.98);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  caret-color: var(--orange);
}

input[type="email"],
input[type="text"],
select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

select {
  padding-right: 46px;
}

textarea {
  min-height: 168px;
  padding-block: 15px;
  resize: vertical;
  white-space: normal;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(228, 103, 1, 0.18);
  border-color: rgba(228, 103, 1, 0.7);
  box-shadow: 0 0 0 1px rgba(228, 103, 1, 0.18);
}

.checkbox {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.checkbox input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 4px;
  padding: 0;
}

.checkbox span {
  min-width: 0;
  font-size: 0.96rem;
  line-height: 1.45;
}

.mini-note {
  max-inline-size: 760px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-signal,
.product-family-card__top,
.product-line-panel,
.support-console {
  background:
    radial-gradient(circle at 78% 28%, rgba(201, 239, 79, 0.22), transparent 23%),
    radial-gradient(circle at 18% 76%, rgba(228, 103, 1, 0.16), transparent 24%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.085) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, #17232a, #26343c);
  background-size: auto;
}

.contact-signal__grid {
  background:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 34px),
    radial-gradient(circle at 70% 44%, rgba(201, 239, 79, 0.12), transparent 32%);
  opacity: 0.45;
}

.product-family-section {
  display: grid;
  gap: 2rem;
}

.product-family-section .section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: 1rem 3rem;
  align-items: end;
}

.product-family-section .section-head .label {
  grid-column: 1 / -1;
}

.product-family-section .section-head h2 {
  max-inline-size: 760px;
  margin: 0;
}

.product-family-section .section-head > p:not(.label) {
  max-inline-size: 610px;
  margin: 0;
}

.product-family-grid {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  gap: 24px;
  align-items: stretch;
}

.product-family-card {
  min-height: 0;
  display: grid;
  grid-template-rows: 210px auto auto 1fr auto;
  padding: 0 26px 28px;
}

.product-family-card__top {
  height: auto;
  min-height: 210px;
}

.product-family-card .kicker {
  min-height: 0;
  margin-bottom: 14px;
  align-self: start;
}

.product-family-card h3 {
  min-height: 4.4em;
  margin-bottom: 14px;
  font-size: var(--type-card-final);
}

.product-family-card p {
  min-height: 9.2em;
  margin: 0;
  line-height: 1.55;
}

.product-tags {
  align-self: end;
}

.product-tags span {
  line-height: 1.15;
}

@media (max-width: 1180px) {
  :root {
    --type-hero-final: 4.35rem;
    --type-page-final: 4rem;
    --type-section-final: 2.9rem;
    --type-card-final: 1.7rem;
    --section-pad-final: 3.75rem;
  }

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

@media (max-width: 900px) {
  :root {
    --type-hero-final: 3.35rem;
    --type-page-final: 3.1rem;
    --type-section-final: 2.35rem;
    --type-card-final: 1.55rem;
    --section-pad-final: 3rem;
  }

  html {
    scroll-padding-top: 88px;
  }

  .hero,
  .page-hero__stage,
  .support-hero__stage {
    min-height: auto;
  }

  .hero-content,
  .page-hero__content,
  .page-hero--services .page-hero__content,
  .page-hero--sectors .page-hero__content,
  .page-hero--company .page-hero__content {
    width: min(calc(100% - 28px), var(--max));
    padding-block: 4.5rem 3.8rem;
  }

  .contact-grid,
  .form-grid,
  .product-family-section .section-head {
    grid-template-columns: 1fr;
  }

  .flow-rail,
  .route-grid,
  .laser-layout,
  .line-dashboard,
  .problem-layout,
  .section-head,
  .contact-grid,
  .product-family-grid,
  .product-family-section .section-head,
  .product-line-section .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .product-family-section .section-head .label {
    grid-column: auto;
  }

  .product-family-card h3,
  .product-family-card p {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --type-hero-final: 2.55rem;
    --type-page-final: 2.45rem;
    --type-section-final: 2rem;
    --type-card-final: 1.45rem;
    --section-pad-final: 2.55rem;
  }

  .site-header .brand img,
  .topbar .brand img {
    width: 44px;
    height: 44px;
  }

  .site-header.is-scrolled .brand img,
  .topbar.is-scrolled .brand img {
    width: 36px;
    height: 36px;
  }

  .brand-mark,
  .brand strong {
    font-size: 1.25rem;
  }

  h1,
  .hero h1,
  .page-hero h1,
  .support-hero h1 {
    max-inline-size: 13.6ch;
  }

  .hero-copy,
  .page-hero p,
  .support-hero p {
    font-size: 1rem;
  }

  .flow-rail {
    grid-template-columns: 1fr;
  }

  .flow-rail::before {
    display: none;
  }

  .flow-step {
    padding-top: 28px;
  }

  .flow-step::before {
    top: 20px;
  }

  form {
    padding: 1.35rem;
  }

  input,
  select,
  textarea {
    font-size: 0.98rem;
  }
}

/* ================================================================
   NAVEGACIÓN MÓVIL — implementación única (hamburguesa)
   Antes había dos: un nav de scroll horizontal (<=980px) y una
   hamburguesa (<=820px) solapándose. Ahora solo hamburguesa <=980px.
   ================================================================ */
@media (max-width: 980px) {
  html {
    scroll-padding-top: 96px;
  }

  .topbar,
  .site-header .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: stretch;
    gap: 10px 14px;
    padding-block: 10px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    min-height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    justify-self: end;
    align-self: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 12px 30px rgba(23, 35, 42, 0.08);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }

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

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

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

  .nav,
  .topnav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 0;
    overflow: visible;
    overflow-x: visible;
  }

  .nav.open,
  .topnav.open {
    display: flex;
  }

  .nav a,
  .topnav a,
  .nav .button,
  .topnav .nav-cta {
    width: 100%;
    min-height: 42px;
    justify-content: center;
  }

  .topbar .brand,
  .site-header .brand {
    display: flex;
    justify-items: start;
    text-align: left;
  }
}

/* El aviso de cookies nunca debe tapar la página entera */
.cookie-banner {
  max-height: 80vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}
