:root {
  --bg: #f3f7fa;
  --surface: #ffffff;
  --paper: #f3f7fa;
  --surface-soft: #f8fbfd;
  --blue-dark: #0d6fa8;
  --ink: #122436;
  --text: #122436;
  --muted: #5d7184;
  --line: #d8e3ea;
  --brand-blue: #1288c9;
  --brand-green: #66c633;
  --shadow: 0 18px 44px rgba(18, 36, 54, 0.08);
  --radius: 18px;
  --container: 1180px;
  --narrow: 860px;
}

* {
  box-sizing: border-box;
}

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

main [id] {
  scroll-margin-top: 126px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbfd 0%, var(--bg) 100%);
}

.nowrap {
  white-space: nowrap;
}

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

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

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

.site-header,
.hero-shell,
.section-shell,
.site-footer,
.content-shell,
.legal-content {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 38px rgba(18, 36, 54, 0.08);
}

.brand img {
  width: 178px;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  min-width: 0;
  white-space: nowrap;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a[aria-current="page"] {
  color: var(--text);
}

.area-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(244, 248, 251, 0.96);
}

.area-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.area-switch a:hover {
  background: #fff;
  color: var(--text);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
}

.header-phone-icon {
  width: 16px;
  height: 16px;
  color: var(--brand-blue);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #08161f;
  background: var(--brand-green);
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.1rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.28;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.button.primary {
  background: var(--brand-green);
  color: #09151d;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.landing-page main {
  padding-bottom: 10px;
}

.landing-hero {
  padding: 78px 0 26px;
}

.landing-hero-shell {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px;
  align-items: center;
}

.landing-hero-copy {
  text-align: left;
}

.landing-hero-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.landing-lead {
  max-width: 31rem;
  margin-top: 18px;
  font-size: 0.98rem;
}

.landing-hero-copy .hero-actions {
  justify-content: flex-start;
}

.landing-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.landing-entry-card {
  display: grid;
  grid-template-rows: 320px auto;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 52px rgba(18, 36, 54, 0.1);
  background: rgba(255, 255, 255, 0.92);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.landing-entry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(18, 36, 54, 0.14);
  border-color: rgba(18, 136, 201, 0.16);
}

.landing-entry-media {
  position: relative;
  overflow: hidden;
  background: #dfe8ee;
}

.landing-entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-robotik img {
  object-position: center 42%;
}

.visual-automation img {
  object-position: center center;
}

.landing-entry-body {
  display: grid;
  gap: 12px;
  padding: 24px 24px 26px;
  text-align: left;
}

.landing-entry-body h2 {
  font-size: 1.42rem;
  line-height: 1.15;
}

.landing-entry-body p {
  max-width: 31ch;
  font-size: 0.96rem;
}

.landing-entry-body .hero-actions {
  justify-content: flex-start;
  margin-top: 2px;
}

.landing-visual-label {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 18, 28, 0.64);
  backdrop-filter: blur(8px);
}

.landing-visual-label strong {
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-section {
  padding: 24px 0;
}

.landing-section-shell {
  max-width: 980px;
}

.landing-company-panel {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-shell {
  padding: 86px 0 56px;
}

.hero-copy {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy h1 {
  max-width: 11ch;
  margin-inline: auto;
}

.landing-page .hero-copy h1 {
  font-size: clamp(2rem, 3.7vw, 3.25rem);
}

.landing-page .hero-copy h1 span {
  white-space: nowrap;
}

.hero-copy p:not(.eyebrow) {
  max-width: 52ch;
  margin: 18px auto 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.section {
  padding: 20px 0 26px;
}

.section-shell {
  max-width: var(--narrow);
  text-align: center;
}

.section-heading {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 52ch;
}

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

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

.info-card,
.selection-card,
.contact-panel,
.contact-form-panel,
.content-panel,
.legal-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card,
.content-panel {
  padding: 22px 24px;
  text-align: center;
}

.content-panel {
  min-width: 0;
  overflow-wrap: anywhere;
}

.info-card,
.content-panel,
.selection-card {
  display: grid;
  gap: 10px;
}

.selection-page .hero-copy {
  max-width: 980px;
}

.selection-page .hero-copy h1 {
  max-width: none;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 28px auto 0;
}

.selection-card {
  padding: 22px;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  justify-items: center;
}

.selection-card:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 136, 201, 0.16);
  background: rgba(255, 255, 255, 0.98);
}

.selection-card span {
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.selection-card strong {
  font-size: 1.08rem;
  line-height: 1.34;
  max-width: 28ch;
  margin-inline: auto;
}

.selection-card p {
  max-width: 34ch;
  margin-inline: auto;
  text-align: center;
}

.selection-card-media {
  position: relative;
  height: 156px;
  margin-top: 4px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbfd 0%, #ebf3f7 100%);
}

.selection-card-media.robotik img,
.selection-card-media.automation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selection-card-media.robotik img {
  object-position: center 34%;
}

.selection-card-media.automation img {
  object-position: center 44%;
}

.contact-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
  margin-top: 24px;
  text-align: left;
  align-items: start;
}

.contact-panel,
.contact-form-panel {
  padding: 22px;
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-block,
.contact-switch-note {
  display: grid;
  gap: 8px;
}

.contact-block strong,
.contact-switch-note strong {
  color: var(--text);
  font-size: 1rem;
}

.contact-switch-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-form-panel > strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.contact-form-panel > p {
  margin-top: 8px;
}

.contact-form {
  margin-top: 18px;
}

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

.contact-form label {
  display: block;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-message,
.form-check,
.contact-form button,
.form-note {
  margin-top: 14px;
}

.form-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-check span {
  margin: 0 !important;
  font-weight: 400 !important;
  color: var(--muted);
}

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

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.content-shell,
.legal-content {
  padding: 56px 0 38px;
}

.content-intro,
.legal-content article {
  max-width: var(--narrow);
  margin-inline: auto;
  text-align: center;
}

.content-intro {
  display: grid;
  gap: 14px;
}

.content-intro p {
  max-width: 58ch;
  margin-inline: auto;
}

.content-page .content-intro h1 {
  font-size: clamp(2rem, 3.6vw, 3.15rem);
}

.content-grid {
  max-width: var(--narrow);
  margin: 26px auto 0;
}

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

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

.content-panel p + p {
  margin-top: 8px;
}

.content-closing {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
}

.content-closing p + p {
  margin-top: 12px;
}

.content-closing a {
  color: var(--text);
  font-weight: 700;
}

.legal-content article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-content article h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: none;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-content article h2 {
  margin-top: 28px;
  font-size: 1.24rem;
}

.legal-content article p + p {
  margin-top: 12px;
}

.legal-page .legal-content article > h2,
.legal-page .legal-content article > p:not(.eyebrow):not(.legal-intro) {
  text-align: left;
}

.legal-page .legal-content .legal-intro {
  max-width: 74ch;
  margin: 0 auto;
}

.legal-page .legal-content .legal-version {
  margin-top: 32px;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 26px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
  flex-direction: column;
}

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

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

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer-social {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

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

  .landing-hero-copy {
    text-align: center;
  }

  .landing-hero-copy h1,
  .landing-lead {
    margin-inline: auto;
  }

  .header-phone {
    justify-self: end;
  }

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

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

@media (max-width: 760px) {
  .site-header,
  .hero-shell,
  .section-shell,
  .site-footer,
  .content-shell,
  .legal-content {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 12px 14px;
  }

  .area-switch {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .header-phone {
    display: none;
  }

  .brand img {
    width: 150px;
  }

  .hero-shell {
    padding: 64px 0 42px;
  }

  .landing-hero {
    padding: 58px 0 18px;
  }

  .landing-hero-shell {
    width: min(calc(100% - 20px), var(--container));
    gap: 20px;
  }

  .landing-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .landing-entry-card {
    grid-template-rows: 236px auto;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .hero-actions,
  .contact-switch-links {
    flex-direction: column;
  }

  .card-grid.two,
  .card-grid.three,
  .selection-grid,
  .content-grid.two,
  .content-grid.three,
  .form-grid,
  .landing-entry-grid {
    grid-template-columns: 1fr;
  }

  .selection-card-media {
    height: 132px;
  }

  .content-shell,
  .legal-content {
    padding-top: 44px;
  }
}

.mse-home-page {
  background: var(--paper);
}

.mse-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  gap: 30px;
  align-items: center;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 72px 0 36px;
}

.mse-home-hero-copy h1 {
  max-width: 12ch;
}

.mse-home-hero-lead {
  max-width: 62ch;
  margin-top: 20px;
  font-size: 1rem;
}

.mse-home-page .section-heading,
.references-heading {
  margin-inline: auto;
  text-align: center;
}

.mse-home-page .section-heading h2 {
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(1.72rem, 2.35vw, 2.2rem);
  line-height: 1.12;
}

.mse-home-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mse-home-audience span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #33404d;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
}

.mse-home-hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mse-home-hero-card,
.mse-home-area-card,
.mse-home-service-column,
.mse-home-partner-card,
.mse-home-contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mse-home-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #eaf1f5;
}

.mse-home-hero-card picture,
.mse-home-hero-card img,
.mse-home-area-media picture,
.mse-home-area-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.mse-home-hero-card img {
  object-fit: cover;
}

.mse-home-hero-card-robotics img {
  object-position: center 42%;
}

.mse-home-hero-card-automation img {
  object-position: center center;
}

.mse-home-hero-card-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(8, 18, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.mse-home-hero-card-label strong,
.mse-home-hero-card-label span {
  color: #fff;
}

.mse-home-hero-card-label strong {
  font-size: 16px;
}

.mse-home-hero-card-label span {
  font-size: 13px;
  line-height: 1.45;
}

.mse-home-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1080px);
  margin-inline: auto;
}

.mse-home-area-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
}

.mse-home-area-media {
  min-height: 340px;
  background: #eef3f6;
}

.mse-home-area-media img {
  object-fit: cover;
  object-position: center center;
}

.mse-home-area-body {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 24px;
  text-align: center;
}

.mse-home-area-body > span,
.mse-home-service-head span {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.mse-home-area-body h3,
.mse-home-service-head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.mse-home-area-body p {
  margin: 0;
}

.mse-home-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

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

.mse-home-future-section {
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(22, 142, 209, 0.2), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(102, 198, 51, 0.14), transparent 30%),
    #07111d;
}

.mse-home-future-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  width: min(100%, 1180px);
  min-height: 580px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: rgba(9, 24, 38, 0.84);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.mse-home-future-media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.mse-home-future-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, rgba(9, 24, 38, 0.9));
  pointer-events: none;
}

.mse-home-future-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.mse-home-future-image-label {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 22px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(4, 12, 20, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mse-home-future-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: clamp(34px, 6vw, 76px);
}

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

.mse-home-future-copy h2 {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.mse-home-future-copy > strong {
  color: #dce8ef;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.18;
}

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

.mse-home-future-tags,
.mse-home-future-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mse-home-future-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #dbe8ef;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 780;
}

.mse-home-future-actions .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

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

  .mse-home-future-media {
    min-height: 460px;
  }

  .mse-home-future-media::after {
    background: linear-gradient(180deg, transparent 68%, rgba(9, 24, 38, 0.92));
  }
}

@media (max-width: 420px) {
  .legal-page .legal-content {
    width: calc(100% - 24px);
  }

  .legal-content article {
    min-width: 0;
    padding: 20px 16px;
  }

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

@media (max-width: 620px) {
  .mse-home-future-card,
  .mse-home-future-media {
    min-height: 0;
  }

  .mse-home-future-media {
    aspect-ratio: 4 / 5;
  }

  .mse-home-future-copy {
    padding: 30px 22px 34px;
  }

  .mse-home-future-copy h2 {
    font-size: clamp(42px, 15vw, 60px);
  }
}

/* Regionaler Einsatzgebiets-Hub */
.home-service-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 980px);
  margin: 32px auto 0;
}

.home-service-area-grid div {
  display: grid;
  gap: 7px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.home-service-area-grid span {
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-service-area-grid strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.home-service-area-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.service-area-page {
  background: #f3f6f8;
}

.service-area-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  width: min(calc(100% - 32px), var(--container));
  margin: 28px auto 0;
  padding: clamp(56px, 8vw, 104px);
  color: #fff;
  background: linear-gradient(135deg, #06101b 0%, #0d2638 64%, #12374a 100%);
  border-radius: 30px;
  overflow: hidden;
}

.service-area-hero-copy {
  display: grid;
  gap: 22px;
}

.service-area-hero h1 {
  max-width: 14ch;
  color: #fff;
  font-size: clamp(2.7rem, 5.8vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.service-area-hero .eyebrow {
  color: #7ed9ff;
}

.service-area-lead {
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.service-area-radius {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  aspect-ratio: 1;
  padding: 44px;
  text-align: center;
  border: 1px solid rgba(126, 217, 255, 0.35);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 142, 209, 0.22) 0 38%, rgba(22, 142, 209, 0.07) 39% 59%, transparent 60%);
}

.service-area-radius::before,
.service-area-radius::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(126, 217, 255, 0.2);
  border-radius: 50%;
}

.service-area-radius::before { inset: 15%; }
.service-area-radius::after { inset: 31%; }

.service-area-radius span,
.service-area-radius strong,
.service-area-radius b,
.service-area-radius small {
  position: relative;
  z-index: 1;
}

.service-area-radius span {
  color: #7ed9ff;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-area-radius strong {
  margin-top: 6px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.service-area-radius b {
  margin-top: 8px;
  color: #fff;
  font-size: 1rem;
}

.service-area-radius small {
  max-width: 26ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.service-area-section {
  padding-top: clamp(72px, 9vw, 118px);
  padding-bottom: 0;
}

.service-area-section .section-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.service-area-section .section-heading h2,
.service-area-cta h2 {
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.service-area-region-grid,
.service-area-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-area-region-grid article,
.service-area-link-grid a,
.service-area-process-grid article,
.service-area-faq-list details {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16, 34, 53, 0.06);
}

.service-area-region-grid article,
.service-area-link-grid a {
  display: grid;
  gap: 10px;
}

.service-area-region-grid span,
.service-area-link-grid span {
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-area-region-grid strong,
.service-area-link-grid strong {
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.3;
}

.service-area-region-grid p,
.service-area-link-grid p,
.service-area-process-grid p,
.service-area-faq-list p,
.service-area-cta p {
  color: var(--muted);
  line-height: 1.68;
}

.service-area-link-grid a {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-area-link-grid a:hover,
.service-area-link-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(18, 136, 201, 0.45);
  box-shadow: 0 22px 54px rgba(16, 34, 53, 0.1);
}

.service-area-link-grid a:focus-visible {
  outline: 3px solid rgba(18, 136, 201, 0.28);
  outline-offset: 3px;
}

.service-area-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-area-process-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.15rem;
}

.service-area-faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 34px auto 0;
}

.service-area-faq-list details {
  padding: 22px 24px;
}

.service-area-faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.service-area-faq-list p {
  margin-top: 12px;
}

.service-area-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  margin-top: clamp(72px, 9vw, 118px);
  margin-bottom: 36px;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(16, 34, 53, 0.08);
}

.service-area-cta h2 {
  max-width: 16ch;
  margin: 8px 0 16px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  text-align: left;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .service-area-hero {
    grid-template-columns: 1fr;
    padding: 54px 28px;
  }

  .service-area-radius {
    width: min(100%, 430px);
    justify-self: center;
  }

  .service-area-process-grid,
  .service-area-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-service-area-grid {
    grid-template-columns: 1fr;
  }

  .service-area-hero {
    width: calc(100% - 20px);
    margin-top: 12px;
    padding: 42px 20px;
    border-radius: 22px;
  }

  .service-area-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .service-area-radius {
    padding: 32px;
  }

  .service-area-region-grid,
  .service-area-link-grid {
    grid-template-columns: 1fr;
  }

  .service-area-region-grid article,
  .service-area-link-grid a,
  .service-area-process-grid article {
    padding: 22px;
  }
}

.mse-home-value-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1080px);
  margin-inline: auto;
}

.mse-home-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1080px);
  margin-inline: auto;
}

.mse-home-service-column {
  display: grid;
  gap: 16px;
  padding: 22px;
  text-align: center;
}

.mse-home-link-list {
  display: grid;
  gap: 8px;
}

.mse-home-link-list a {
  display: grid;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  text-align: center;
  color: #33404d;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 760;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.mse-home-link-list a:hover,
.mse-home-partner-card:hover {
  border-color: rgba(18, 136, 201, 0.32);
  background: #eef6fb;
  transform: translateY(-1px);
}

.mse-home-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 1080px);
  margin-inline: auto;
}

.mse-home-partner-card {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  align-content: center;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.mse-home-partner-card strong {
  font-size: 18px;
  line-height: 1.22;
}

.mse-home-partner-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.mse-home-contact-teaser {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1080px);
  margin-inline: auto;
}

.mse-home-contact-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #f8fbfd;
  text-align: center;
  justify-items: center;
}

.mse-home-contact-card img {
  width: min(100%, 240px);
  height: auto;
}

.mse-home-contact-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.mse-home-contact-card a {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 760;
}

.mse-home-contact-cta {
  margin-top: 18px;
}

.mse-home-contact-layout {
  align-items: stretch;
  width: min(100%, 1080px);
  margin-inline: auto;
}

.references-section {
  overflow: hidden;
}

.references-heading {
  max-width: var(--narrow);
  margin-inline: auto;
  margin-bottom: 22px;
}

.references-actions {
  justify-content: center;
  margin-top: 28px;
}

.reference-group-label {
  width: min(100%, 1080px);
  margin: 0 auto 12px;
  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: 28px;
}

.reference-logo-strip,
.reference-name-strip {
  display: grid;
  width: min(100%, 1080px);
  margin-inline: auto;
  align-items: center;
  justify-items: center;
  gap: 14px 18px;
}

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

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

.reference-logo-strip img,
.reference-name-strip img {
  width: 100%;
  max-width: 132px;
  height: 42px;
  object-fit: contain;
  margin-inline: auto;
}

.reference-logo-strip .logo-rittal {
  max-width: 104px;
  height: 34px;
}

.reference-name-strip .logo-gueldenkron {
  max-width: 120px;
}

.mse-home-contact-panel,
.contact-hints {
  display: grid;
  gap: 16px;
}

.mse-home-contact-panel .contact-block,
.mse-home-contact-panel .contact-hints div {
  text-align: center;
}

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

.contact-block address {
  font-style: normal;
  line-height: 1.72;
  color: var(--muted);
}

.contact-block address a {
  color: inherit;
}

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

.contact-hints b {
  color: var(--ink);
  font-size: 13px;
}

.contact-hints span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .mse-home-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 56px;
  }

  .mse-home-hero-copy,
  .mse-home-hero-copy h1,
  .mse-home-hero-lead,
  .mse-home-audience,
  .mse-home-page .hero-actions {
    justify-content: center;
    margin-inline: auto;
    text-align: center;
  }

  .mse-home-hero-copy h1 {
    max-width: 14ch;
  }

  .mse-home-page .section-heading h2 {
    max-width: 18ch;
  }

  .mse-home-value-grid-four,
  .mse-home-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .mse-home-area-grid,
  .mse-home-service-grid,
  .mse-home-contact-teaser {
    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));
  }

  .mse-home-area-card {
    grid-template-columns: 1fr;
  }

  .mse-home-area-media {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .mse-home-hero {
    width: min(calc(100% - 20px), var(--container));
    padding: 42px 0 20px;
  }

  .mse-home-hero-copy h1 {
    max-width: 11ch;
  }

  .mse-home-hero-visual,
  .mse-home-value-grid-four,
  .mse-home-partner-grid {
    grid-template-columns: 1fr;
  }

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

  .mse-home-hero-card {
    min-height: 300px;
  }

  .mse-home-area-body,
  .mse-home-service-column,
  .mse-home-partner-card,
  .mse-home-contact-card {
    padding: 18px;
  }
}

.content-subsection {
  max-width: var(--narrow);
  margin: 28px auto 0;
}

.company-stats,
.team-grid,
.training-grid,
.timeline-list {
  display: grid;
  gap: 16px;
}

.company-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.company-stat-card,
.team-card,
.training-card,
.timeline-item {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.company-stat-card strong,
.team-card strong,
.training-card strong,
.timeline-item strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.3;
}

.company-stat-card span,
.timeline-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.partner-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.partner-badge-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.team-card {
  display: grid;
  gap: 10px;
}

.team-card img {
  width: min(100%, 250px);
  height: auto;
}

.team-card p {
  margin: 0;
}

.timeline-list {
  position: relative;
  margin-top: 28px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(18, 136, 201, 0.18);
}

.timeline-item {
  position: relative;
  padding-left: 46px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--brand-blue);
  box-shadow: 0 0 0 6px rgba(18, 136, 201, 0.12);
}

.timeline-item .eyebrow {
  margin-bottom: 6px;
}

.training-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.training-card {
  display: grid;
  gap: 10px;
}

.training-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.detail-footer {
  display: grid;
  gap: 18px;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: var(--muted);
  text-align: left;
}

.detail-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.detail-footer-grid strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 8px;
}

.detail-footer-grid p,
.detail-footer-grid a {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.detail-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.detail-footer-nav a {
  color: var(--text);
  font-weight: 700;
}

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

.detail-footer-group {
  display: grid;
  align-content: start;
  gap: 5px;
}

.detail-footer-group strong {
  margin-bottom: 3px;
}

.detail-footer-group a {
  color: var(--text);
  font-weight: 650;
}

.detail-footer-group a[aria-current="page"] {
  color: var(--blue);
}

@media (max-width: 1120px) {
  .company-stats,
  .training-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .team-grid,
  .detail-footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-footer-links {
    grid-template-columns: 1fr;
  }
}

.detail-footer-group,
.detail-footer-group a {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .company-stats,
  .team-grid,
  .training-grid {
    grid-template-columns: 1fr;
  }

  .detail-footer {
    width: min(calc(100% - 20px), var(--container));
  }

  .detail-footer-grid {
    padding: 18px;
  }

  .detail-footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .area-switch a {
    font-size: 0.72rem;
    padding: 0 10px;
  }
}

@media (max-width: 900px) {
  .site-header .main-nav {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    padding: 10px 2px 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .site-header .main-nav a {
    flex: 0 0 auto;
  }
}

/* Premium brand direction: Robotik · Automation · KI */
:root {
  --premium-ink: #07111d;
  --premium-ink-soft: #0d1b2a;
  --premium-blue: #168ed1;
  --premium-green: #66c633;
  --premium-line: rgba(7, 17, 29, 0.12);
}

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 - var(--container)) / 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 minmax(0, 1fr) auto auto auto;
}

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

.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;
}

.main-nav a {
  position: relative;
  color: #293847;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--premium-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.area-switch {
  border-color: rgba(7, 17, 29, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

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

.header-cta:hover,
.button.primary:hover {
  border-color: var(--premium-blue);
  background: var(--premium-blue);
  transform: translateY(-1px);
}

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

.mse-home-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: calc(100svh - 87px);
  margin: 0;
  padding: clamp(72px, 9vw, 128px) max(24px, calc((100vw - var(--container)) / 2));
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(22, 142, 209, 0.28), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(102, 198, 51, 0.12), transparent 26%),
    linear-gradient(135deg, #050b12 0%, #0a1724 56%, #0d2032 100%);
}

.mse-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(100deg, transparent 4%, #000 68%, transparent 100%);
}

.mse-home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

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

.mse-home-hero-copy h1 {
  max-width: 10.5ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.4rem, 6.2vw, 6.8rem);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.mse-home-hero-lead {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.65;
}

.mse-home-audience span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

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

.mse-home-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(12px);
}

.mse-home-hero-visual {
  position: relative;
  min-height: clamp(480px, 66vh, 720px);
}

.mse-home-hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.mse-home-hero-card-robotics {
  position: absolute;
  inset: 0 7% 7% 0;
}

.mse-home-hero-card-automation {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 43%;
  z-index: 2;
}

.mse-home-hero-card picture,
.mse-home-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mse-home-hero-card-label {
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(4, 10, 16, 0.7);
  color: #fff;
  backdrop-filter: blur(16px);
}

.mse-home-page .section {
  padding-top: clamp(88px, 10vw, 132px);
  padding-bottom: clamp(88px, 10vw, 132px);
}

.mse-home-page .section-heading h2 {
  max-width: 18ch;
  color: var(--premium-ink);
  font-size: clamp(2.4rem, 4.7vw, 4.8rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.mse-home-page .section-heading > p:last-child {
  max-width: 64ch;
  font-size: 1.08rem;
  line-height: 1.72;
}

.mse-home-area-card,
.mse-home-service-column,
.mse-home-partner-card,
.mse-home-contact-card,
.reference-card {
  border-color: var(--premium-line);
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(7, 17, 29, 0.07);
}

.mse-home-area-card,
.mse-home-service-column,
.mse-home-partner-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.mse-home-area-card:hover,
.mse-home-service-column:hover,
.mse-home-partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 142, 209, 0.34);
  box-shadow: 0 28px 74px rgba(7, 17, 29, 0.12);
}

.mse-home-area-media,
.mse-home-service-media {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.mse-home-area-media img,
.mse-home-service-media img {
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.mse-home-area-card:hover img,
.mse-home-service-column:hover img {
  transform: scale(1.035);
}

.references-section,
.contact-section {
  position: relative;
}

.contact-section {
  color: #fff;
  background: var(--premium-ink);
}

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

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

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

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

  .mse-home-hero-copy h1 {
    font-size: clamp(3.25rem, 13vw, 5.4rem);
  }

  .mse-home-hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .mse-home-hero-visual {
    display: grid;
    gap: 16px;
    min-height: 0;
  }

  .mse-home-hero-card-robotics,
  .mse-home-hero-card-automation {
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
    min-height: 300px;
  }

  .mse-home-hero-card-automation {
    right: auto;
    bottom: auto;
  }

  .mse-home-hero-card-label span {
    display: none;
  }
}

@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;
    min-width: max-content;
    justify-self: center;
  }

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

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

/* Revision 2026-08: klarere Klickflächen, Zukunftsrobotik und Machbarkeitsseite */
.mse-home-hero-card,
.mse-home-area-card {
  color: inherit;
  text-decoration: none;
}

.mse-home-hero-card {
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.mse-home-hero-card:hover,
.mse-home-hero-card:focus-visible {
  border-color: rgba(115, 215, 255, 0.7);
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.42);
  transform: translateY(-3px);
}

.mse-home-hero-card:focus-visible,
.mse-home-area-card:focus-visible {
  outline: 3px solid #73d7ff;
  outline-offset: 4px;
}

.mse-home-area-card {
  cursor: pointer;
}

.mse-home-card-cta {
  width: 100%;
  max-width: 100%;
  padding-inline: 14px;
  justify-self: center;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  pointer-events: none;
}

.mse-home-future-copy h2 {
  max-width: 13ch;
  font-size: clamp(40px, 5.1vw, 72px);
}

.mse-home-future-copy h2 span {
  display: block;
}

.mse-home-future-media img {
  object-position: 44% center;
}

.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;
}

.feasibility-page {
  background: #f5f8fa;
}

.feasibility-page .site-header {
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
}

.feasibility-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  width: min(calc(100% - 40px), 1240px);
  min-height: calc(100vh - 116px);
  margin-inline: auto;
  padding: clamp(72px, 8vw, 118px) 0;
}

.feasibility-hero-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.feasibility-hero-copy .eyebrow,
.feasibility-hero-copy h1,
.feasibility-hero-copy p,
.feasibility-hero-copy .hero-actions {
  margin: 0;
}

.feasibility-hero-copy h1 {
  max-width: 11ch;
  color: #07111d;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.feasibility-lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.45vw, 1.25rem);
  line-height: 1.72;
}

.feasibility-hero-copy .hero-actions {
  justify-content: flex-start;
}

.feasibility-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.feasibility-proof span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #314455;
  font-size: 12px;
  font-weight: 800;
}

.feasibility-hero-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(7, 17, 29, 0.18);
}

.feasibility-hero-media picture,
.feasibility-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.feasibility-hero-media img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.feasibility-hero-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(4, 10, 16, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 760;
  backdrop-filter: blur(14px);
}

.feasibility-page .section {
  padding: clamp(78px, 9vw, 122px) 20px;
}

.feasibility-page .section.alt {
  background: #eaf1f5;
}

.feasibility-page .section > .section-heading,
.feasibility-page .section > .value-grid,
.feasibility-page .section > .feasibility-steps,
.feasibility-page .section > .feasibility-scope-grid,
.feasibility-page .section > .feasibility-faq-grid,
.feasibility-page .section > .contact-layout {
  width: min(100%, 1140px);
  margin-inline: auto;
}

.feasibility-page .section-heading h2 {
  width: 100%;
  max-width: 17ch;
  color: #07111d;
  font-size: clamp(2.35rem, 4.4vw, 4.6rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.feasibility-page .section-heading > p:last-child {
  max-width: 66ch;
  font-size: 1.05rem;
  line-height: 1.72;
  text-align: center;
}

.feasibility-value-grid {
  gap: 16px;
  margin-top: 34px !important;
}

.feasibility-value-grid .value-card {
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 17, 29, 0.07);
}

.feasibility-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px !important;
  padding: 0;
  list-style: none;
}

.feasibility-steps li {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(18, 136, 201, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.feasibility-steps li > span {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feasibility-steps li div {
  display: grid;
  gap: 12px;
}

.feasibility-steps strong {
  font-size: 21px;
  line-height: 1.15;
}

.feasibility-steps p,
.feasibility-scope-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.feasibility-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px !important;
}

.feasibility-scope-grid article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-top: 3px solid var(--brand-blue);
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feasibility-scope-grid strong {
  font-size: 20px;
}

.feasibility-manufacturers {
  color: #fff;
  background: #07111d;
}

.feasibility-manufacturers .section-heading h2,
.feasibility-manufacturers .section-heading p,
.feasibility-manufacturers .eyebrow {
  color: #fff;
}

.feasibility-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px !important;
}

.feasibility-faq details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.feasibility-faq summary {
  cursor: pointer;
  color: #07111d;
  font-weight: 820;
  line-height: 1.4;
}

.feasibility-faq details p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.feasibility-page .contact-section {
  background: #07111d;
}

.feasibility-page .contact-layout {
  margin-top: 34px;
}

@media (max-width: 1080px) {
  .feasibility-page .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .feasibility-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feasibility-hero-copy {
    justify-items: center;
    text-align: center;
  }

  .feasibility-hero-copy h1,
  .feasibility-lead {
    margin-inline: auto;
  }

  .feasibility-hero-copy .hero-actions {
    justify-content: center;
  }

  .feasibility-proof {
    justify-content: center;
  }

  .feasibility-hero-media {
    min-height: 520px;
  }

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

@media (max-width: 620px) {
  .mse-home-future-copy h2 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .feasibility-hero {
    width: min(calc(100% - 24px), 1240px);
    padding: 58px 0 70px;
  }

  .feasibility-hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .feasibility-hero-copy .hero-actions {
    width: 100%;
  }

  .feasibility-hero-copy .button {
    width: 100%;
  }

  .feasibility-hero-media {
    min-height: 390px;
    border-radius: 22px;
  }

  .feasibility-page .section {
    padding: 72px 14px;
  }

  .feasibility-page .section-heading h2 {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
  }

  .feasibility-value-grid,
  .feasibility-steps,
  .feasibility-scope-grid,
  .feasibility-faq-grid {
    grid-template-columns: 1fr;
  }

  .feasibility-steps li {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .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 {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    overflow-x: visible;
  }

  .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;
  }
}
