:root {
  --ink: #0b1219;
  --surface: #ffffff;
  --surface-soft: #f8fbfd;
  --paper: #f3f6f8;
  --line: #d7e0e7;
  --muted: #62707d;
  --blue: #1288c9;
  --blue-dark: #0c5f91;
  --green: #66c633;
  --shadow: 0 20px 48px rgba(8, 11, 16, 0.08);
  --radius-md: 8px;
  --font-label-size: 12px;
  --font-label-weight: 820;
  --font-body-size: 15px;
  --font-body-line: 1.6;
  --font-body-sm-size: 14px;
  --font-body-sm-line: 1.55;
  --font-note-size: 13px;
  --font-note-line: 1.5;
  --font-card-title-size: 18px;
  --font-card-title-line: 1.22;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(243, 246, 248, 0.9);
  border-bottom: 1px solid rgba(215, 224, 231, 0.85);
  backdrop-filter: blur(14px);
}

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

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


.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #33404d;
  font-size: 14px;
  font-weight: 720;
}

.area-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(18, 136, 201, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(8, 11, 16, 0.06);
}

.area-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #4d5a67;
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
}

.area-switch a[aria-current="page"] {
  background: rgba(18, 136, 201, 0.12);
  color: var(--blue-dark);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.header-phone-icon svg {
  width: 100%;
  height: 100%;
}

.header-phone-text {
  white-space: nowrap;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 780;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #08161f;
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
}

.button.solution-link {
  color: #fff;
  background: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr);
  gap: 32px;
  align-items: center;
  padding: clamp(40px, 7vw, 84px) clamp(18px, 4vw, 52px);
  background: linear-gradient(135deg, #0d151d, #122233 56%, #183449);
  color: #fff;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 440px);
}

.hero-robot-stack {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 300px;
  padding: 18px 12px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  perspective: 1200px;
  overflow: hidden;
}

.hero-robot {
  position: relative;
  width: auto;
  max-width: 34%;
  max-height: 248px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.24));
  transition: transform 260ms ease, filter 260ms ease;
  transform-origin: bottom center;
}

.hero-robot-left {
  transform: translateX(18px);
  z-index: 1;
}

.hero-robot-center {
  max-width: 38%;
  max-height: 270px;
  z-index: 3;
}

.hero-robot-right {
  transform: translateX(-18px);
  z-index: 2;
}

.hero-robot-duo .hero-robot {
  max-width: 43%;
  max-height: 276px;
}

.hero-robot-duo .hero-robot-left {
  transform: translateX(10px);
}

.hero-robot-duo .hero-robot-right {
  transform: translateX(-10px);
}

.hero-robot-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.16) 48%, transparent 72%);
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
  transition: transform 520ms ease, opacity 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-robot-stack:hover::after {
    opacity: 1;
    transform: translateX(130%);
  }

  .hero-robot-stack:hover .hero-robot-left {
    transform: translateX(10px) rotate(-4deg) translateY(-4px);
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.26));
  }

  .hero-robot-stack:hover .hero-robot-center {
    transform: translateY(-10px) scale(1.03);
    filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.28));
  }

  .hero-robot-stack:hover .hero-robot-right {
    transform: translateX(-10px) rotate(4deg) translateY(-4px);
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.26));
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: var(--font-label-size);
  font-weight: var(--font-label-weight);
  text-transform: uppercase;
}

h1,
h2,
strong,
p,
span {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  max-width: 18ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.06;
  max-width: 20ch;
  text-wrap: balance;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.solution-body p,
.value-card p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body-size);
  line-height: var(--font-body-line);
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 22px;
  color: #c4ccd5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 26px;
}

.hero-metrics div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics strong {
  display: block;
  font-size: 18px;
}

.hero-metrics span {
  display: block;
  margin-top: 4px;
  color: #b9c2cc;
  font-size: 12px;
}

.section {
  padding: clamp(38px, 6vw, 72px) clamp(18px, 4vw, 52px);
}

.section.alt {
  background: #eef3f6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: var(--font-note-size);
  line-height: var(--font-note-line);
}

.compact-note {
  max-width: none;
  white-space: nowrap;
  font-size: 12px;
}

.application-overview-section {
  padding-top: clamp(30px, 4vw, 44px);
}

.application-overview-heading {
  margin-bottom: 18px;
}

.application-chip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.application-chip-card {
  display: grid;
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
  gap: 8px;
  min-height: 138px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.application-chip-card strong {
  overflow-wrap: anywhere;
  hyphens: auto;
  font-size: var(--font-card-title-size);
  line-height: var(--font-card-title-line);
  text-wrap: balance;
}

.application-chip-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body-sm-size);
  line-height: var(--font-body-sm-line);
}

.system-family-section {
  padding-top: clamp(30px, 4vw, 44px);
}

.system-family-section .section-heading {
  max-width: 680px;
  margin-bottom: 18px;
}

.system-family-section .eyebrow {
  margin-bottom: 8px;
}

.system-family-section h2 {
  font-size: clamp(22px, 2.7vw, 31px);
  line-height: 1.08;
  max-width: 18ch;
}

.system-family-section .section-heading p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.55;
}

.system-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.system-overview-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.system-overview-card strong {
  font-size: var(--font-card-title-size);
  line-height: var(--font-card-title-line);
}

.system-overview-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body-sm-size);
  line-height: var(--font-body-sm-line);
}

.future-spotlight-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(22, 142, 209, 0.2), transparent 30%),
    radial-gradient(circle at 84% 90%, rgba(102, 198, 51, 0.12), transparent 28%),
    #07111d;
}

.future-spotlight-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.future-spotlight-copy .eyebrow {
  margin: 0;
  color: #73d7ff;
}

.future-spotlight-copy h2 {
  max-width: 16ch;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.future-spotlight-copy > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0;
  color: #b9c7d1;
  font-size: 16px;
  line-height: 1.7;
}

.future-spotlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.future-spotlight-points span {
  padding: 8px 11px;
  color: #dce8ef;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 780;
}

.future-spotlight-media {
  margin: 0;
}

.future-spotlight-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.4);
}

.future-spotlight-media figcaption {
  margin-top: 10px;
  color: #90a2ae;
  font-size: 12px;
}

.system-overview-card-future {
  color: #fff;
  border-color: rgba(22, 142, 209, 0.32);
  background: linear-gradient(135deg, #07111d, #123149);
}

.system-overview-card-future .button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.partner-competence-section {
  background: var(--surface-soft);
}

.partner-competence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.partner-competence-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.partner-competence-card > span {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-competence-card > strong {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.08;
}

.partner-competence-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.partner-competence-card-certified {
  color: #fff;
  border-color: rgba(22, 142, 209, 0.3);
  background: linear-gradient(145deg, #07111d, #123149);
}

.partner-competence-card-certified > span {
  color: #73d7ff;
}

.partner-competence-card-certified > p {
  color: #b9c7d1;
}

.certification-section {
  padding-top: clamp(34px, 4vw, 52px);
  padding-bottom: clamp(40px, 5vw, 60px);
  background: #fff;
}

.certification-section .section-heading {
  max-width: 720px;
}

.certification-section .section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.certificate-card {
  display: flex;
  min-width: 0;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(7, 17, 29, 0.06);
}

.certificate-card-highlight {
  border-color: rgba(22, 142, 209, 0.28);
}

.certificate-image {
  display: grid;
  flex: 0 0 92px;
  width: 92px;
  max-width: 92px;
  min-width: 0;
  place-items: center;
  align-self: stretch;
  min-height: 86px;
  padding: 7px;
  overflow: hidden;
  background: #edf2f5;
}

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

.certificate-image:hover img,
.certificate-image:focus-visible img {
  transform: scale(1.025);
}

.certificate-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 14px 12px;
}

.certificate-copy > span {
  overflow-wrap: anywhere;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-copy > strong {
  overflow-wrap: anywhere;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.15;
}

@media (max-width: 900px) {
  .future-spotlight-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .future-spotlight-copy h2 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .partner-competence-grid {
    grid-template-columns: 1fr;
  }

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

  .certificate-image {
    flex-basis: 104px;
  }
}

/* DOBOT LUMO L1 Detailseite */
.lumo-detail-hero {
  background:
    radial-gradient(circle at 86% 20%, rgba(44, 194, 238, 0.18), transparent 30%),
    linear-gradient(135deg, #07111d 0%, #0a2435 62%, #0b3348 100%);
}

.lumo-detail-visual {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(226, 242, 249, 0.92));
}

.lumo-detail-visual img {
  object-fit: contain;
  transform: scale(1.55);
}

.lumo-price-panel {
  max-width: 520px;
  margin-top: 24px;
  padding: 18px 20px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(116, 218, 247, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.lumo-price-panel span {
  color: #8fe6ff;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lumo-price-panel strong {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.lumo-price-panel small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.lumo-spec-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lumo-potential-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.lumo-capability-grid article {
  min-width: 0;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border: 1px solid rgba(7, 17, 29, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 28, 43, 0.07);
}

.lumo-capability-grid article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #087db6, #14b6dd);
  font-weight: 900;
}

.lumo-capability-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.lumo-capability-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.lumo-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(7, 17, 29, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 28, 43, 0.08);
}

.lumo-spec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.lumo-spec-table th,
.lumo-spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(7, 17, 29, 0.09);
  vertical-align: top;
}

.lumo-spec-table thead th {
  color: #fff;
  background: #0a2536;
  font-size: 0.9rem;
}

.lumo-spec-table tbody th {
  width: 30%;
  color: #17364b;
  background: #f5f9fb;
  font-size: 0.9rem;
}

.lumo-spec-table tbody td {
  color: var(--muted);
  line-height: 1.5;
}

.lumo-spec-table tbody tr:last-child th,
.lumo-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.lumo-use-grid .application-chip-card {
  cursor: default;
}

@media (max-width: 1050px) {
  .lumo-spec-strip,
  .lumo-potential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .lumo-detail-visual img {
    transform: scale(1.32);
  }

  .lumo-spec-strip,
  .lumo-potential-grid,
  .lumo-capability-grid {
    grid-template-columns: 1fr;
  }

  .lumo-capability-grid article {
    padding: 20px;
  }

  .lumo-table-wrap {
    margin-inline: -4px;
    border-radius: 16px;
  }
}

.references-section {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.references-heading {
  margin-bottom: 18px;
}

.reference-group-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.reference-group-label-medium {
  margin-top: 24px;
}

.reference-logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  align-items: center;
}

.reference-logo-strip img {
    width: 100%;
    height: 46px;
    padding: 8px 12px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.reference-logo-strip img.logo-rittal {
    height: 56px;
    padding: 6px 12px;
}

.reference-name-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 0;
}

.reference-name-strip img {
  display: block;
  width: 100%;
  height: 54px;
  min-height: 46px;
  padding: 6px 10px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.reference-name-strip img.logo-gueldenkron {
  padding: 4px 10px;
}

.value-grid,
.solution-grid,
.steps-grid,
.video-grid {
  display: grid;
  gap: 12px;
}

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

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.quick-proof div {
  padding: 14px 16px;
  color: #33404d;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.4;
  text-align: center;
}

.value-card,
.solution-card,
.step-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.value-card {
  padding: 20px;
}

.value-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: var(--font-card-title-size);
  line-height: var(--font-card-title-line);
}

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

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

.solution-card-visual {
  display: grid;
  min-height: 190px;
  place-items: center;
  background: #f6f8fa;
}

.eol-card-visual {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 22px;
  background: linear-gradient(135deg, #eef7fc, #f7fafc 58%, #eef2f5);
}

.eol-card-visual span {
  display: grid;
  min-height: 72px;
  padding: 8px 5px;
  place-items: center;
  border: 1px solid rgba(22, 142, 209, 0.2);
  border-radius: 10px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.eol-card-visual span:last-child {
  color: #fff;
  background: var(--blue-dark);
}

.eol-integrator-note {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  color: var(--ink);
  background: rgba(22, 142, 209, 0.08);
  font-size: 0.95rem;
}

.subpage-visual.eol-hero-visual {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #eef7fc, #fff 48%, #edf2f5);
  box-shadow: var(--shadow);
}

.eol-hero-visual > strong {
  color: var(--blue-dark);
  font-size: 0.9rem;
  text-align: center;
}

.eol-flow-mini {
  display: grid;
  grid-template-columns: repeat(9, auto);
  gap: 7px;
  align-items: center;
  justify-content: center;
}

.eol-flow-mini span {
  padding: 8px 9px;
  border: 1px solid rgba(22, 142, 209, 0.22);
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.eol-flow-mini i {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.eol-hero-machine {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
  overflow: hidden;
}

.eol-hero-visual .eol-hero-machine img {
  position: relative;
  z-index: 1;
  width: min(76%, 350px);
  max-height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(7, 17, 29, 0.14));
}

.eol-conveyor {
  position: absolute;
  right: 4%;
  bottom: 38px;
  left: 4%;
  height: 22px;
  border: 2px solid #7a8995;
  border-radius: 5px;
  background: repeating-linear-gradient(90deg, #a9b5bd 0 13px, #e4e9ec 13px 20px);
  box-shadow: 0 13px 0 -9px #7a8995;
}

.eol-module-grid,
.eol-package-grid,
.eol-faq-grid {
  display: grid;
  gap: 14px;
}

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

.eol-module-grid .detail-card {
  position: relative;
  padding-top: 54px;
}

.eol-module-grid .detail-card > span {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

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

.eol-package-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.eol-package-card.featured {
  border-color: rgba(22, 142, 209, 0.5);
  background: linear-gradient(145deg, #fff, #eef8fd);
  box-shadow: 0 22px 54px rgba(22, 142, 209, 0.13);
}

.eol-package-card > span {
  color: var(--blue-dark);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eol-package-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.eol-package-card p {
  margin: 0;
}

.eol-faq-grid {
  width: min(100%, 920px);
  margin-inline: auto;
}

.eol-faq-grid details {
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.eol-faq-grid summary {
  padding: 18px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.eol-faq-grid p {
  margin: -2px 0 20px;
}

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

.solution-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  height: 100%;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0d151d;
}

.video-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0d151d;
}

.video-card-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.video-card-body span {
  color: var(--blue-dark);
  font-size: var(--font-label-size);
  font-weight: var(--font-label-weight);
  text-transform: uppercase;
}

.video-card-body strong {
  font-size: var(--font-card-title-size);
  line-height: 1.28;
  max-width: 22ch;
  text-wrap: balance;
}

.video-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body-sm-size);
  line-height: var(--font-body-sm-line);
}

.video-open-link {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 780;
}

.solution-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: #f6f8fa;
  padding: 10px;
}

.project-spotlight-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 0.8fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.project-spotlight-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  background: #eef3f7;
}

.project-spotlight-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.project-spotlight-copy h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  text-wrap: balance;
}

.project-spotlight-copy p {
  margin: 0;
  color: var(--muted);
}

.project-spotlight-points {
  display: grid;
  gap: 8px;
}

.project-spotlight-points span {
  padding: 10px 12px;
  color: #33404d;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.4;
}

.robot-selector-section {
  background: #edf3f7;
}

.selector-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 1.1fr) minmax(220px, 0.7fr);
  gap: 14px;
  align-items: stretch;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.selector-controls,
.selector-actions,
.selector-result {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 8px;
}

.selector-actions .button {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.selector-controls {
  grid-template-columns: 1fr;
}

.selector-controls label {
  display: grid;
  gap: 6px;
}

.selector-accessory-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.selector-accessory-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  justify-self: start;
  object-fit: contain;
}

.selector-accessory-copy {
  display: grid;
  gap: 6px;
}

.selector-accessory-copy p,
.selector-accessory-copy small {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body-sm-size);
  line-height: var(--font-body-sm-line);
}

.selector-accessory-copy strong {
  font-size: 16px;
  line-height: 1.2;
}

.selector-accessory-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.selector-accessory-toggle input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green);
}

.selector-accessory-toggle span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  text-transform: none;
}

.sockel-product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.sockel-product-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  background: #f6f8fa;
  padding: 18px;
}

.sockel-product-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.sockel-product-copy h2,
.sockel-product-copy p {
  margin: 0;
}

.sockel-product-copy p {
  color: var(--muted);
}

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

.sockel-product-facts div {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 12px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sockel-product-facts b {
  overflow-wrap: anywhere;
  hyphens: auto;
  color: #33404d;
  font-size: 12px;
  text-transform: uppercase;
}

.sockel-product-facts span {
  overflow-wrap: anywhere;
  hyphens: auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.4;
}

.sockel-product-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.sockel-product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.selector-controls span {
  color: #33404d;
  font-size: var(--font-label-size);
  font-weight: var(--font-label-weight);
  text-transform: uppercase;
}

.selector-controls select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 720;
}

.selector-actions p,
.selector-gripper-card p,
.selector-gripper-card small,
.selector-result p,
.selector-result small {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body-sm-size);
  line-height: var(--font-body-sm-line);
}

.selector-result {
  padding: 16px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.selector-result-list {
  display: grid;
  gap: 8px;
  max-height: 420px;
  overflow: auto;
  padding-right: 4px;
}

.selector-robot-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 8px;
  align-items: start;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.selector-robot-card.primary-match {
  border-color: rgba(18, 136, 201, 0.55);
  box-shadow: 0 10px 26px rgba(18, 136, 201, 0.08);
}

.selector-robot-card img {
  width: 68px;
  height: 62px;
  object-fit: contain;
  padding: 5px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.selector-robot-card > div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.selector-pick-button {
  justify-self: start;
  min-height: 30px;
  padding: 0 10px;
  color: var(--blue-dark);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  background: #eaf4fb;
  border: 1px solid rgba(18, 136, 201, 0.35);
  border-radius: 7px;
  cursor: pointer;
}

.selector-robot-card.primary-match .selector-pick-button {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.selector-result span {
  color: var(--blue-dark);
  font-size: var(--font-label-size);
  font-weight: var(--font-label-weight);
  text-transform: uppercase;
}

.selector-result strong {
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

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

.selector-specs div {
  display: grid;
  gap: 3px;
  padding: 6px 7px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.selector-specs b {
  color: #33404d;
  font-size: 12px;
  text-transform: uppercase;
}

.selector-specs small {
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
}

.selector-data-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 12px;
  color: #0d6fa8;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.selector-data-link:hover,
.selector-data-link:focus-visible {
  color: #07111d;
}

.selector-actions {
  justify-items: start;
}

.selector-gripper-card {
  display: grid;
  gap: 7px;
  padding: 12px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.selector-gripper-card span {
  color: var(--blue-dark);
  font-size: var(--font-label-size);
  font-weight: var(--font-label-weight);
  text-transform: uppercase;
}

.selector-gripper-card strong {
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.selector-gripper-list {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
}

.selector-gripper-option {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px;
  align-items: start;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.selector-gripper-option.primary-match {
  border-color: rgba(18, 136, 201, 0.55);
  box-shadow: 0 10px 22px rgba(18, 136, 201, 0.08);
}

.selector-gripper-option img {
  width: 58px;
  height: 50px;
  object-fit: contain;
  padding: 4px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.selector-gripper-option > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.selector-gripper-option strong {
  font-size: 14px;
  overflow-wrap: anywhere;
}

.selector-gripper-option span {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.selector-gripper-option p,
.selector-gripper-option small {
  font-size: 12px;
  line-height: 1.35;
}

.selector-gripper-option button {
  justify-self: start;
  min-height: 30px;
  padding: 0 10px;
  color: var(--blue-dark);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  background: #eaf4fb;
  border: 1px solid rgba(18, 136, 201, 0.35);
  border-radius: 7px;
  cursor: pointer;
}

.selector-gripper-option.primary-match button {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.solution-body {
  display: grid;
  grid-template-areas:
    "eyebrow"
    "title"
    "desc"
    "specs"
    "points"
    "actions";
  grid-template-rows: 18px 74px 110px auto 1fr auto;
  gap: 8px;
  height: 100%;
  padding: 18px;
  align-content: start;
}

.solution-body strong,
.contact-panel strong,
.contact-rail-card strong,
.section-heading h2 {
  text-wrap: balance;
}

.solution-actions {
  grid-area: actions;
  margin-top: 6px;
  align-self: end;
}

.solution-specs {
  grid-area: specs;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.solution-specs span {
  padding: 6px 9px;
  color: #33404d;
  background: #f4f8fb;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
}

.solution-body span {
  grid-area: eyebrow;
  color: var(--blue-dark);
  font-size: var(--font-label-size);
  font-weight: var(--font-label-weight);
  text-transform: uppercase;
}

.solution-body strong {
  grid-area: title;
  display: block;
  font-size: var(--font-card-title-size);
  line-height: 1.28;
  max-width: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.solution-body > p {
  grid-area: desc;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.solution-points {
  grid-area: points;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-points li {
  position: relative;
  padding-left: 16px;
  color: #445260;
  font-size: 13px;
  line-height: 1.45;
}

.solution-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

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

.step-card {
  display: grid;
  gap: 10px;
  min-height: 140px;
  padding: 20px;
}

.step-card strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 50%;
  font-size: 14px;
}

.step-card p {
  margin: 0;
  color: #33404d;
  font-size: var(--font-body-size);
  line-height: var(--font-body-line);
}

.contact-section {
  background: linear-gradient(135deg, #0d151d, #13273a);
  color: #fff;
}

.contact-section .section-heading p {
  color: #c4ccd5;
}

.contact-section .section-heading h2 {
  color: #fff;
}

.contact-stack {
  display: grid;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: stretch;
  padding: 24px;
}

.contact-copy,
.contact-rail {
  display: grid;
  gap: 16px;
}

.contact-panel strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

.contact-panel p {
  color: #445260;
}

.contact-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--blue-dark);
  background: #eef6fb;
  border: 1px solid rgba(18, 136, 201, 0.16);
  border-radius: 999px;
  font-size: var(--font-label-size);
  font-weight: var(--font-label-weight);
  text-transform: uppercase;
}

.contact-lines {
  display: grid;
  gap: 6px;
}

.contact-direct-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.contact-direct-note b {
  color: var(--ink);
  font-size: var(--font-note-size);
}

.contact-direct-note span {
  color: var(--muted);
  font-size: var(--font-note-size);
  line-height: var(--font-note-line);
}

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

.contact-person-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.contact-person-name-image {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 0 6px;
  object-fit: contain;
}

.contact-person-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-note-size);
  line-height: var(--font-note-line);
}

.contact-person-card a {
  color: var(--blue-dark);
  font-size: var(--font-note-size);
  font-weight: 700;
  text-decoration: none;
}

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

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-rail-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.contact-rail-card span {
  color: var(--blue-dark);
  font-size: var(--font-label-size);
  font-weight: var(--font-label-weight);
  text-transform: uppercase;
}

.contact-rail-card strong {
  color: var(--ink);
  font-size: var(--font-card-title-size);
  line-height: 1.3;
  max-width: 22ch;
}

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

.contact-rail-list div {
  position: relative;
  padding-left: 18px;
  color: #445260;
  font-size: var(--font-note-size);
  line-height: var(--font-note-line);
}

.contact-rail-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

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

.contact-notes div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.contact-notes b {
  color: var(--ink);
  font-size: var(--font-note-size);
}

.contact-notes span {
  color: var(--muted);
  font-size: var(--font-note-size);
  line-height: var(--font-note-line);
}

.contact-form-compact {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-hidden {
  display: none;
}

.contact-form-head {
  display: grid;
  gap: 8px;
}

.contact-form-head strong {
  max-width: 24ch;
  font-size: 22px;
  line-height: 1.2;
}

.contact-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body-size);
  line-height: var(--font-body-line);
}

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

.contact-form-compact label {
  display: grid;
  gap: 6px;
}

.contact-form-compact label span {
  color: var(--muted);
  font-size: var(--font-label-size);
  font-weight: var(--font-label-weight);
  text-transform: uppercase;
}

.contact-form-compact input,
.contact-form-compact select,
.contact-form-compact textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form-compact textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.contact-form-check label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.contact-form-check input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.contact-form-check label span {
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  line-height: 1.5;
}

.contact-form-check a {
  color: var(--blue-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.contact-form-actions span {
  color: var(--muted);
  font-size: var(--font-note-size);
  line-height: var(--font-note-line);
}

.contact-form-confirmation {
  display: grid;
  gap: 6px;
  padding: 14px;
  color: #163253;
  background: #eef9ff;
  border: 1px solid #c8e5f5;
  border-radius: 8px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 52px);
  color: #5d6a76;
  font-size: var(--font-note-size);
  border-top: 1px solid var(--line);
  background: #f8fbfd;
}

.site-footer address {
  font-style: normal;
  line-height: 1.72;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--blue-dark);
  font-weight: 760;
}

.site-footer address a {
  color: inherit;
}

.legal-page {
  background: #f8fbfd;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 4vw, 52px);
}

.legal-content article {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-content h1,
.legal-content h2 {
  margin: 0;
}

.legal-content h1 {
  font-size: clamp(30px, 5vw, 48px);
}

.legal-content h2 {
  margin-top: 10px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #445260;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
}

.contact-form-confirmation[hidden] {
  display: none;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 4vw, 52px);
  background: linear-gradient(135deg, #0d151d, #122233 56%, #183449);
  color: #fff;
}

.subpage-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  color: #c4ccd5;
  font-size: var(--font-body-size);
  line-height: var(--font-body-line);
}

.subpage-visual img {
  width: min(100%, 480px);
  height: auto;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: #f8fbfd;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: #b9c2cc;
  font-size: 14px;
  font-weight: 700;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 clamp(18px, 4vw, 52px);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.spec-strip div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.spec-strip div:last-child {
  border-right: 0;
}

.spec-strip span {
  overflow-wrap: anywhere;
  hyphens: auto;
  color: var(--muted);
  font-size: var(--font-label-size);
  font-weight: var(--font-label-weight);
  text-transform: uppercase;
}

.spec-strip strong {
  font-size: var(--font-card-title-size);
  line-height: 1.28;
}

.spec-note {
  margin: 12px clamp(18px, 4vw, 52px) 0;
  color: var(--muted);
  font-size: var(--font-note-size);
  line-height: var(--font-note-line);
}

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

.detail-card {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.detail-card strong {
  font-size: var(--font-card-title-size);
  line-height: var(--font-card-title-line);
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body-sm-size);
  line-height: var(--font-body-sm-line);
}

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

.product-showcase-card {
  grid-column: span 2;
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-showcase-card-wide {
  grid-column: span 3;
  grid-template-columns: minmax(210px, 0.9fr) minmax(260px, 1.1fr);
  grid-template-rows: 1fr;
}

.product-showcase-image {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #f7fafc, #e9f0f4);
}

.product-showcase-image-dark {
  background: #05080d;
}

.product-showcase-image img {
  width: 100%;
  height: 210px;
  max-width: 100%;
  object-fit: contain;
}

.model-name {
  display: block;
  white-space: nowrap;
}

.future-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(22, 142, 209, 0.2), transparent 28%),
    radial-gradient(circle at 72% 90%, rgba(102, 198, 51, 0.14), transparent 30%),
    linear-gradient(135deg, #050b12, #0b1928 58%, #102a3c);
}

.future-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: end;
  min-height: 390px;
}

.future-hero-card {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(228, 238, 244, 0.92));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.future-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.future-hero-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5, 11, 18, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.future-hero-card-rover {
  height: 250px;
  transform: translateY(-20px);
}

.future-product-grid .product-showcase-card {
  min-height: 390px;
}

.future-product-grid .future-product-card-full {
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
}

.product-showcase-image-lumo img {
  transform: scale(1.55);
}

.future-price-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-price-request {
  font-size: 18px;
}

.future-lab-section {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: #07111d;
  color: #fff;
}

.future-lab-figure {
  margin: 0;
}

.future-lab-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.future-lab-figure figcaption {
  margin-top: 10px;
  color: #92a3af;
  font-size: 12px;
}

.future-lab-copy h2 {
  margin: 10px 0 18px;
  max-width: 12ch;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
}

.future-lab-copy > p:not(.eyebrow) {
  max-width: 52ch;
  color: #b8c5cf;
  line-height: 1.65;
}

.future-atomw-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.future-atomw-image {
  margin: 0;
}

.future-atomw-image img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.future-atomw-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.future-atomw-copy h2 {
  margin: 10px 0 18px;
  max-width: 15ch;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.02;
}

.future-atomw-copy > p:not(.eyebrow):not(.future-price-note) {
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.65;
}

.future-atomw-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 14px;
}

.future-atomw-facts div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.future-atomw-facts span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.future-atomw-facts strong {
  font-size: 15px;
}

.future-video-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #07111d;
  color: #fff;
}

.future-video-copy h2 {
  margin: 10px 0 18px;
  max-width: 16ch;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
}

.future-video-copy > p:not(.eyebrow) {
  margin: 0;
  max-width: 56ch;
  color: #b8c5cf;
  line-height: 1.65;
}

.future-video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.future-video-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #dce6ed;
  font-size: 12px;
  font-weight: 700;
}

.future-video-frame {
  margin: 0;
}

.future-rover-media {
  display: grid;
  grid-template-columns: minmax(170px, 0.44fr) minmax(320px, 1.56fr);
  gap: 14px;
  align-items: end;
}

.future-rover-photo {
  margin: 0;
}

.future-rover-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.future-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.future-video-frame figcaption,
.future-rover-photo figcaption {
  margin-top: 10px;
  color: #92a3af;
  font-size: 12px;
}

.product-showcase-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px;
}

.product-family {
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-showcase-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
}

.product-showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body-sm-size);
  line-height: var(--font-body-sm-line);
}

.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-facts span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4f7f9;
  font-size: 12px;
  font-weight: 700;
}

.product-price {
  margin-top: auto;
  font-size: 22px;
}

.product-price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.product-data-link {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--brand-blue) 35%, transparent);
  text-underline-offset: 4px;
}

.mobile-product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #edf4f7);
  box-shadow: var(--shadow);
}

.mobile-product-panel h2 {
  max-width: 18ch;
  margin-top: 0;
}

.mobile-product-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.mobile-spec-list {
  display: grid;
  margin: 0;
}

.mobile-spec-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-spec-list dt {
  color: var(--muted);
  font-size: 13px;
}

.mobile-spec-list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    display: none;
  }

  .header-phone {
    justify-self: start;
    grid-column: 2;
    grid-row: 1;
    font-size: 13px;
  }

  .hero,
  .subpage-hero,
  .spec-strip,
  .value-grid,
  .quick-proof,
  .application-chip-grid,
  .detail-grid,
  .product-showcase-grid,
  .solution-grid,
  .project-spotlight-card,
  .sockel-product-card,
  .video-grid,
  .reference-logo-strip,
  .steps-grid,
  .contact-panel,
  .contact-person-grid,
  .contact-notes,
  .contact-form-grid,
  .contact-form-actions,
  .selector-panel {
    grid-template-columns: 1fr;
  }

  .product-showcase-card,
  .product-showcase-card-wide,
  .future-product-grid .future-product-card-full {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 240px 1fr;
  }

  .product-showcase-image img {
    height: 200px;
  }

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

  .hero-robot-stack,
  .subpage-visual img {
    height: 270px;
  }

  .hero-robot-stack {
    min-height: 270px;
    padding: 16px 10px 4px;
  }

  .hero-robot {
    max-height: 220px;
  }

  .hero-robot-center {
    max-height: 238px;
  }

  .hero-visual {
    justify-self: stretch;
    width: 100%;
  }

  .selector-panel {
    gap: 12px;
  }

  .project-spotlight-card img {
    min-height: 240px;
  }

  .sockel-product-card img {
    min-height: 240px;
  }

  .selector-result-list {
    max-height: 360px;
  }

  .selector-gripper-list {
    max-height: 240px;
  }

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

  .application-chip-card {
    min-height: 0;
  }

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

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

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

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

  .future-hero-visual {
    min-height: 320px;
  }

  .future-video-section {
    grid-template-columns: 1fr;
  }

  .future-lab-section {
    grid-template-columns: 1fr;
  }

  .future-rover-media {
    grid-template-columns: minmax(150px, 0.5fr) minmax(280px, 1.5fr);
  }

  .future-atomw-section {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  }

  .future-video-copy h2 {
    max-width: 20ch;
  }
}

@media (max-width: 420px) {
  .legal-content {
    width: 100%;
    min-width: 0;
    padding: 28px 12px;
  }

  .legal-content article {
    min-width: 0;
    padding: 18px 14px;
  }

  .legal-content h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 9vw, 2.15rem);
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
}

@media (max-width: 620px) {
  .future-rover-media {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
  }

  .future-rover-photo img,
  .future-video-frame video {
    border-radius: 12px;
  }

  .future-atomw-section {
    grid-template-columns: 1fr;
  }

  .future-atomw-image img {
    max-height: 520px;
  }

  .future-atomw-facts {
    grid-template-columns: 1fr;
  }

  .future-hero-visual {
    grid-template-columns: 1fr 0.78fr;
    gap: 8px;
    min-height: 245px;
  }

  .future-hero-card {
    height: 230px;
    border-radius: 12px;
  }

  .future-hero-card-rover {
    height: 170px;
    transform: translateY(-10px);
  }

  .future-hero-card img {
    padding: 6px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr auto;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

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

  .selector-panel,
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase-card,
  .product-showcase-card-wide,
  .future-product-grid .future-product-card-full {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 240px 1fr;
  }

  .product-showcase-image img {
    height: 200px;
  }

  .eol-module-grid,
  .eol-package-grid {
    grid-template-columns: 1fr;
  }

  .eol-flow-mini {
    grid-template-columns: 1fr;
    width: min(100%, 260px);
    margin-inline: auto;
  }

  .eol-flow-mini i {
    transform: rotate(90deg);
    text-align: center;
  }

  .model-name,
  .compact-note {
    white-space: normal;
  }

  .future-atomw-facts {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .application-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 10px 16px;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .area-switch {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 2px;
  }

  .area-switch a {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .selector-panel {
    padding: 12px;
    gap: 10px;
  }

  .contact-form-actions .button {
    width: 100%;
  }

  .selector-controls {
    gap: 8px;
  }

  .selector-controls select {
    min-height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }

  .selector-robot-card {
    grid-template-columns: 60px 1fr;
    padding: 7px;
  }

  .selector-robot-card img {
    width: 60px;
    height: 58px;
  }

  .selector-result {
    padding: 10px;
  }

  .selector-result-list {
    max-height: 330px;
  }

  .selector-result p,
  .selector-result small,
  .selector-actions p,
  .selector-gripper-card p,
  .selector-gripper-card small {
    font-size: 12px;
    line-height: 1.4;
  }

  .selector-specs {
    grid-template-columns: 1fr;
  }

  .selector-gripper-card {
    padding: 10px;
  }

  .selector-gripper-list {
    max-height: 220px;
  }

  .selector-gripper-option {
    grid-template-columns: 52px 1fr;
    padding: 7px;
  }

  .selector-gripper-option img {
    width: 52px;
    height: 46px;
  }

  .brand img {
    height: 46px;
  }

  .brand {
    gap: 8px;
  }

  .header-phone {
    font-size: 12px;
    gap: 6px;
  }

  .header-phone-icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .header-phone-text {
    display: none;
  }

  .hero {
    padding: 30px 16px;
  }

  .subpage-hero {
    padding: 30px 16px;
  }

  .section {
    padding: 34px 16px;
  }

  .spec-strip {
    margin: 0 16px;
  }

  .spec-note {
    margin: 12px 16px 0;
  }

  .video-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 82vw;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
  }

  .video-grid > * {
    scroll-snap-align: start;
  }

  .application-chip-grid,
  .reference-logo-strip,
  .reference-name-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-overview-grid {
    grid-template-columns: 1fr;
  }

  .compact-note {
    white-space: normal;
  }

    .reference-logo-strip img {
        height: 42px;
        padding: 8px 10px;
    }

    .reference-logo-strip img.logo-rittal {
        height: 54px;
    }

  .contact-panel {
    padding: 18px;
  }

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

  .hero-robot-stack,
  .subpage-visual img {
    height: 220px;
  }

  .hero-robot-stack {
    min-height: 220px;
    padding: 12px 8px 2px;
  }

  .hero-robot {
    max-width: 35%;
    max-height: 180px;
  }

  .hero-robot-center {
    max-width: 40%;
    max-height: 196px;
  }

  .solution-card img {
    height: 170px;
    padding: 8px;
  }

  .video-card video {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 900px) {
  .site-header .main-nav {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    gap: 8px 16px;
    padding: 10px 2px 2px;
    overflow: visible;
  }

  .site-header .main-nav::-webkit-scrollbar {
    display: none;
  }

  .site-header .main-nav a {
    text-align: center;
  }
}

/* Premium robotics direction */
:root {
  --premium-ink: #07111d;
  --premium-blue: #168ed1;
  --premium-green: #66c633;
}

body {
  font-family: "Segoe UI Variable", "Helvetica Neue", Arial, sans-serif;
  background: #f4f6f7;
  letter-spacing: -0.012em;
}

.site-header {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px max(24px, calc((100vw - 1180px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(7, 17, 29, 0.08);
  border-radius: 0;
  background: rgba(250, 252, 253, 0.9);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  grid-template-columns: auto auto minmax(0, 1fr) auto;
}

.site-header .header-phone {
  display: none;
}

@media (max-width: 1550px) and (min-width: 901px) {
  .site-header {
    column-gap: 12px;
  }

  .site-header .header-phone {
    display: none;
  }

  .brand img {
    width: 170px;
  }
}

.brand img {
  width: 184px;
  height: 70px;
  object-fit: contain;
}

.main-nav a,
.area-switch a,
.header-phone,
.header-cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.header-cta,
.button.primary {
  border-color: var(--premium-ink);
  background: var(--premium-ink);
  color: #fff;
  box-shadow: none;
}

.button {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: calc(88svh - 86px);
  margin: 0;
  padding: clamp(76px, 9vw, 124px) max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(22, 142, 209, 0.3), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(102, 198, 51, 0.1), transparent 24%),
    linear-gradient(135deg, #050b12 0%, #0a1724 58%, #10283c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(110deg, transparent, #000 55%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  color: #8ed3f5;
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 5.8vw, 6.3rem);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.68;
}

.hero .button.primary {
  border-color: #fff;
  background: #fff;
  color: var(--premium-ink);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero-metrics > div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  backdrop-filter: blur(14px);
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.66);
}

.hero-robot-stack {
  min-height: 500px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 75%, rgba(22, 142, 209, 0.26), transparent 44%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38);
}

.hero-robot-duo .hero-robot {
  max-width: 46%;
  max-height: 440px;
}

.section {
  padding-top: clamp(88px, 9vw, 124px);
  padding-bottom: clamp(88px, 9vw, 124px);
}

.section-heading h2 {
  max-width: 18ch;
  color: var(--premium-ink);
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.solution-card,
.project-spotlight-card,
.selector-panel,
.sockel-product-card,
.video-card,
.partner-card,
.process-step,
.detail-card {
  border-color: rgba(7, 17, 29, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(7, 17, 29, 0.07);
}

.solution-card,
.partner-card,
.detail-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.solution-card:hover,
.partner-card:hover,
.detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 142, 209, 0.34);
  box-shadow: 0 28px 72px rgba(7, 17, 29, 0.12);
}

@media (max-width: 900px) {
  .eol-module-grid,
  .eol-package-grid {
    grid-template-columns: 1fr;
  }

  .eol-flow-mini {
    grid-template-columns: 1fr;
    width: min(100%, 260px);
    margin-inline: auto;
  }

  .eol-flow-mini i {
    transform: rotate(90deg);
    text-align: center;
  }
}

@media (max-width: 720px) {
  .sales-solution-grid {
    grid-template-columns: 1fr;
  }

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

  .eol-card-visual span {
    min-height: 42px;
  }

  .eol-hero-visual {
    padding: 18px;
  }

  .eol-hero-machine {
    min-height: 210px;
  }
}

.selector-panel {
  background: linear-gradient(145deg, #fff, #f5f8fa);
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 150px;
    height: 62px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 72px 20px 54px;
  }

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

  .hero-robot-stack {
    min-height: 390px;
    height: 390px;
  }

  .hero-robot-duo .hero-robot {
    max-height: 330px;
  }
}

@media (max-width: 620px) {
  .model-name {
    white-space: normal;
  }

  .site-header .main-nav {
    gap: 8px 12px;
  }

  .site-header .main-nav a {
    font-size: 0.72rem;
  }

  .hero-robot-stack {
    min-height: 280px;
    height: 280px;
  }

  .hero-robot-duo .hero-robot {
    max-width: 48%;
    max-height: 245px;
  }
}

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

@media (min-width: 901px) and (max-width: 1500px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    row-gap: 4px;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header .area-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .site-header .main-nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  .site-header .header-cta {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 24px;
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding-inline: 14px;
  }

  .site-header .brand,
  .site-header .main-nav,
  .site-header .area-switch {
    grid-column: 1;
  }

  .site-header .main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .site-header .brand,
  .site-header .area-switch {
    justify-self: center;
  }

  .site-header .header-cta {
    display: none;
  }

  .site-header .header-phone {
    display: none;
  }
}

/* Einheitlicher Footer auf allen Seiten */
.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 38px max(24px, calc((100vw - 1180px) / 2)) 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #5d6a76;
  background: #f8fbfd;
  border-top: 1px solid rgba(7, 17, 29, 0.1);
  font-size: 0.94rem;
  line-height: 1.55;
  text-align: center;
}

.site-footer address {
  margin: 0;
  font-style: normal;
  line-height: 1.72;
}

.site-footer address a {
  color: inherit;
}

.site-footer nav,
.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
}

.site-footer a {
  color: #18354b;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #168ed1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer > span {
  color: #6a7885;
}

@media (max-width: 620px) {
  .site-footer {
    padding: 32px 18px 36px;
    gap: 14px;
  }

  .site-footer nav,
  .site-footer-social {
    gap: 8px 16px;
  }
}
