﻿:root {
  --bg: #070d10;
  --panel: #10191d;
  --panel-2: #162127;
  --line: rgba(204, 217, 219, 0.2);
  --text: #f7faf8;
  --muted: #c4cfce;
  --lime: #23f08e;
  --lime-soft: rgba(35,240,142, 0.15);
  --orange: #b96820;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(57, 91, 104, 0.22), transparent 34rem),
    linear-gradient(180deg, #030708 0%, var(--bg) 48%, #0c1519 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 5px 5px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
button, input, textarea { font: inherit; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  width: min(1440px, 100%);
  height: 104px;
  margin: 0 auto;
  padding: 0 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand { margin-right: auto; }
.brand img { width: 224px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a { opacity: 0.92; }
.main-nav a:hover { color: var(--lime); }

.language-pill {
  min-width: 48px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lime);
  border-radius: 999px;
}

#mobile-menu-toggle,
.mobile-menu { display: none; }

.menu-button {
  display: none;
  width: 58px;
  height: 58px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  background: rgba(0,0,0,0.22);
  place-content: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.menu-button img {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: contain;
  opacity: 0.42;
}

.menu-button span {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 2px;
  background: #fff;
}

.hero {
  min-height: 740px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,7,8,0.98) 0%, rgba(5,10,12,0.9) 29%, rgba(5,10,12,0.35) 58%, rgba(5,10,12,0.04) 100%),
    linear-gradient(180deg, transparent 67%, rgba(5,10,12,0.9) 100%),
    url("assets/hero.png") right center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 150px 70px 90px;
}

.eyebrow {
  color: var(--lime);
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 5.6vw, 88px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
.final-claim span {
  color: var(--lime);
}

h1 .hero-mainword,
h1 .hero-mainword span {
  color: #fff;
}

h1 .hero-green,
h1 .hero-green span {
  color: var(--lime);
}

h2 {
  max-width: 900px;
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: 1.08;
  font-weight: 650;
}

h3 { font-size: 21px; line-height: 1.2; }

.hero-copy {
  max-width: 560px;
  margin-top: 30px;
  color: #f0f4f2;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.button {
  min-height: 52px;
  border: 2px solid var(--lime);
  border-radius: 999px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  background: rgba(9, 14, 17, 0.56);
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--lime-soft);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

.button.primary {
  background: rgba(35,240,142, 0.12);
}

.button.ghost {
  border-color: rgba(255,255,255,0.34);
}

.button.compact {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 14px;
}

.button-gear {
  width: 19px;
  height: 19px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(35,240,142,0.08);
}

.section-block,
.footer {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 88px 70px;
  border-bottom: 1px solid var(--line);
}

.section-copy {
  max-width: 680px;
}

.section-copy p,
.solution-card p,
.module-grid p,
.process p,
.xdocu p,
.footer p,
.footer a,
.image-cards p {
  color: var(--muted);
}

.section-copy p + p,
.section-copy h2 + p {
  margin-top: 22px;
}

.action-spacer {
  height: 14px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 76px;
  align-items: center;
  background: linear-gradient(90deg, rgba(13,22,27,0.95), rgba(10,16,19,0.78));
}

.logo-stage {
  border-left: 1px solid var(--lime);
  padding-left: 60px;
}

.logo-stage img {
  width: min(520px, 100%);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.solution-card {
  min-height: 315px;
  border: 1px solid rgba(203, 214, 216, 0.32);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 64%),
    rgba(8, 14, 17, 0.72);
  padding: 34px 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-card h3 {
  min-height: 52px;
  margin: 30px 0 12px;
}

.solution-card p {
  font-size: 15px;
}

.line-icon {
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  position: relative;
  margin-bottom: 4px;
}

.line-icon.network {
  border: 3px dotted var(--lime);
  border-radius: 50%;
}

.line-icon.network::before,
.line-icon.network::after {
  content: "";
  position: absolute;
  border: 3px solid var(--lime);
  border-radius: 50%;
}

.line-icon.network::before { inset: 22px; }
.line-icon.network::after { inset: 33px; }

.line-icon.terminal::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 10px;
  width: 18px;
  height: 58px;
  border: 3px solid var(--lime);
  border-radius: 16px 16px 8px 8px;
}

.line-icon.terminal::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 22px;
  width: 34px;
  height: 28px;
  border: 3px solid var(--lime);
  border-radius: 8px;
}

.line-icon.gearline {
  border: 3px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 11px rgba(35,240,142,0.06);
}

.line-icon.gearline::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 3px solid var(--lime);
  border-radius: 50%;
}

.line-icon.database {
  height: 34px;
  margin-top: 0;
  margin-bottom: 18px;
  border: 3px solid var(--lime);
  border-radius: 50%;
  box-shadow:
    0 20px 0 -3px #10191d,
    0 20px 0 0 var(--lime),
    0 40px 0 -3px #10191d,
    0 40px 0 0 var(--lime);
}

.feature-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, #0b1216 0%, #111b20 45%, rgba(16,23,26,0.24) 100%);
}

.feature-band img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.22);
}

.engineering {
  display: grid;
  grid-template-columns: 0.75fr 1.75fr;
  gap: 44px;
  align-items: start;
}

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

.image-cards article {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
}

.image-cards img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.image-cards h3,
.image-cards p {
  padding-inline: 18px;
}

.image-cards h3 { padding-top: 16px; }
.image-cards p { padding-bottom: 18px; }

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

.module-grid article,
.process article {
  border: 1px solid rgba(203, 214, 216, 0.28);
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  padding: 28px;
}

.module-grid h3 { color: var(--lime); margin-bottom: 10px; }

.process-star {
  min-height: 620px;
  margin-top: 34px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.process-star::before,
.process-star::after {
  content: "";
  position: absolute;
  inset: 110px 15%;
  border: 1px dashed rgba(35,240,142,0.28);
  border-radius: 50%;
  z-index: -1;
}

.process-star::after {
  inset: 190px 27%;
  border-color: rgba(255,255,255,0.16);
}

.process-core {
  width: 245px;
  min-height: 245px;
  border: 1px solid rgba(35,240,142,0.48);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  background:
    radial-gradient(circle, rgba(35,240,142,0.13), transparent 62%),
    rgba(8,14,17,0.9);
  box-shadow: 0 0 70px rgba(35,240,142,0.08);
}

.process-core img {
  width: 82px;
  height: 82px;
}

.process-core strong {
  font-size: 22px;
  letter-spacing: 0.16em;
}

.process-core small {
  max-width: 170px;
  color: var(--muted);
}

.star-card {
  position: absolute;
  width: min(330px, 34vw);
  min-height: 190px;
  border: 1px solid rgba(203, 214, 216, 0.28);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(35,240,142,0.09), transparent 50%),
    rgba(255,255,255,0.045);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.star-one { left: 0; top: 40px; }
.star-two { right: 0; top: 40px; }
.star-three { left: 0; bottom: 40px; }
.star-four { right: 0; bottom: 40px; }

.star-card span {
  color: var(--lime);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.star-card h3 { margin: 7px 0 8px; }

.process-icon {
  width: 58px;
  height: 58px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  margin: 0 auto 16px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(35,240,142,0.16), transparent 62%),
    rgba(2, 8, 10, 0.78);
  box-shadow: 0 0 22px rgba(35,240,142,0.12);
}

.process-icon::before,
.process-icon::after {
  content: "";
  position: absolute;
  background: var(--lime);
}

.process-icon.analyze::before {
  width: 18px;
  height: 18px;
  border: 2px solid var(--lime);
  background: transparent;
  border-radius: 50%;
  left: 16px;
  top: 14px;
}

.process-icon.analyze::after {
  width: 18px;
  height: 2px;
  transform: rotate(45deg);
  right: 13px;
  bottom: 16px;
}

.process-icon.structure::before {
  width: 24px;
  height: 24px;
  border: 2px solid var(--lime);
  background: transparent;
  transform: rotate(45deg);
  left: 15px;
  top: 15px;
}

.process-icon.structure::after {
  width: 34px;
  height: 2px;
  left: 12px;
  top: 28px;
  box-shadow: 0 -12px 0 rgba(35,240,142,0.34), 0 12px 0 rgba(35,240,142,0.34);
}

.process-icon.visualize::before {
  width: 30px;
  height: 22px;
  border: 2px solid var(--lime);
  border-radius: 4px;
  background: transparent;
  left: 13px;
  top: 15px;
}

.process-icon.visualize::after {
  width: 0;
  height: 0;
  border-left: 10px solid var(--lime);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  background: transparent;
  left: 26px;
  top: 20px;
}

.process-icon.deliver::before {
  width: 28px;
  height: 20px;
  border: 2px solid var(--lime);
  background: transparent;
  border-radius: 4px;
  left: 13px;
  top: 19px;
}

.process-icon.deliver::after {
  width: 18px;
  height: 2px;
  right: 12px;
  top: 28px;
  transform: rotate(-38deg);
  box-shadow: 7px 5px 0 var(--lime);
}

.xdocu {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(4,10,13,0.78), rgba(12,21,26,0.96)),
    url("assets/concept.jpg") center / cover no-repeat;
}

.xdocu h2 + p {
  margin-top: 16px;
}

.final-claim {
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 10px;
  padding-top: 34px;
  border-top: 1px solid rgba(35,240,142,0.24);
  text-align: center;
  font-size: clamp(30px, 4vw, 58px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr 1fr;
  gap: 44px;
  padding-bottom: 70px;
  background: #10191e;
  position: relative;
}

.footer-brand img { width: 220px; margin-bottom: 18px; }
.footer h3 { margin-bottom: 15px; text-transform: uppercase; font-size: 13px; color: #fff; }
.footer a { display: block; margin: 8px 0; }

.footer-bottom {
  position: absolute;
  left: 70px;
  right: 70px;
  bottom: 0;
  min-height: 40px;
  border-top: 1px solid rgba(35,240,142,0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom i {
  display: inline-block;
  width: 30px;
  height: 18px;
  margin-left: 9px;
  vertical-align: middle;
  background: linear-gradient(#e8002d 0 33%, #fff 33% 66%, #e8002d 66%);
}

.modal,
.assistant-chat-modal,
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
}

.modal.open,
.assistant-chat-modal.open,
.project-modal.open { display: flex; }

.modal-box,
.assistant-chat-box,
.project-box {
  width: min(780px, 100%);
  max-height: 88vh;
  overflow: auto;
  border: 1px solid rgba(35,240,142,0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(35,240,142,0.08), transparent 18rem),
    #0b1216;
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
  padding: 34px;
}

.modal-top,
.assistant-top,
.assistant-chat-head,
.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.modal-close,
.assistant-close,
.assistant-chat-close,
.project-close,
.mobile-close {
  border: 0;
  background: transparent;
  color: var(--lime);
  font-size: 28px;
  cursor: pointer;
}

.modal-box > p,
.project-intro,
.chat-small {
  margin: 14px 0 24px;
  color: var(--muted);
}

.form-label {
  display: block;
  margin: 15px 0 7px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(203,214,216,0.34);
  border-radius: 16px;
  background: rgba(0,0,0,0.24);
  color: var(--text);
  padding: 13px 15px;
}

textarea { min-height: 132px; resize: vertical; }
form .button { margin-top: 24px; }

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: min(420px, calc(100vw - 48px));
  z-index: 300;
  padding: 22px;
  border: 1px solid rgba(35,240,142,0.38);
  border-radius: 20px;
  background: rgba(5,8,9,0.94);
  box-shadow: 0 28px 90px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-banner h3 {
  color: var(--lime);
  font-size: 15px;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-btn:hover { background: rgba(35,240,142,0.12); }

.cookie-link {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.assistant-bubble {
  position: fixed;
  right: 24px;
  bottom: 112px;
  z-index: 35;
  width: min(370px, calc(100vw - 48px));
  display: none;
  border: 1px solid rgba(35,240,142,0.38);
  border-radius: 26px;
  background: rgba(10,17,21,0.97);
  box-shadow: 0 20px 55px rgba(0,0,0,0.45);
  padding: 22px;
}

.assistant-bubble.show { display: block; }

.assistant-title,
.form-section-title {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.assistant-bubble p { margin: 12px 0 16px; color: var(--muted); }

.assistant-actions,
.chat-input-actions,
.resume-actions,
.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.assistant-btn,
.chat-option {
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: rgba(35,240,142,0.06);
  color: var(--text);
  padding: 11px 16px;
  font-weight: 850;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.assistant-btn.secondary { border-color: rgba(255,255,255,0.3); }

.assistant-launcher {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 34;
  width: 74px;
  height: 74px;
  display: none;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.48));
}

.assistant-launcher.show { display: block; }
.assistant-launcher img { width: 100%; height: 100%; object-fit: contain; }

body.cookie-pending .assistant-bubble { bottom: 258px; }
body.cookie-pending .assistant-launcher { bottom: 172px; }

#assistantChatBody {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.chat-message,
.chat-answer {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}

.chat-message strong { color: var(--lime); }

.chat-answer {
  justify-self: end;
  max-width: 86%;
  border-color: rgba(35,240,142,0.34);
  color: var(--text);
}

.chat-free-input { min-height: 90px; }
.chat-hint { flex: 1 0 100%; color: var(--muted); font-size: 13px; }

.form-section {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 24px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 15px;
}

.choice {
  border: 1px solid rgba(203,214,216,0.26);
  border-radius: 16px;
  padding: 12px;
  color: var(--muted);
}

.choice input {
  width: auto;
  margin-right: 8px;
  accent-color: var(--lime);
}

@media (max-width: 1100px) {
  .site-header,
  .hero-content,
  .section-block,
  .footer { padding-inline: 32px; }

  .main-nav { display: none; }
  .menu-button { display: grid; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 38;
    display: block;
    opacity: 0;
    pointer-events: none;
    background: rgba(0,0,0,0.72);
    transition: opacity 0.2s ease;
  }

  #mobile-menu-toggle:checked ~ .mobile-menu {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(410px, 90vw);
    min-height: 100%;
    padding: 22px 30px 24px;
    background: #0b1216;
    border-left: 1px solid rgba(35,240,142,0.32);
    transform: translateX(100%);
    transition: transform 0.2s ease;
  }

  #mobile-menu-toggle:checked ~ .mobile-menu .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-close {
    position: absolute;
    top: 22px;
    right: 26px;
  }

  .mobile-logo {
    width: 205px;
    margin-bottom: 12px;
  }

  .mobile-language-row {
    display: flex;
    gap: 10px;
    margin: 0 0 12px;
  }

  .mobile-language-row a {
    min-height: 32px;
    border: 1px solid rgba(35,240,142,0.42);
    border-radius: 999px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
  }

  .mobile-language-row a.active {
    color: var(--lime);
    background: rgba(35,240,142,0.08);
  }

  .mobile-menu-panel > a {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }

  .mobile-assistant-entry {
    width: 100%;
    margin-top: 16px;
    border: 1px solid rgba(35,240,142,0.36);
    border-radius: 20px;
    background: rgba(35,240,142,0.06);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    text-align: left;
    cursor: pointer;
  }

  .mobile-assistant-entry img {
    width: 44px;
    height: 44px;
  }

  .mobile-assistant-entry strong,
  .mobile-assistant-entry small { display: block; }
  .mobile-assistant-entry small { color: var(--muted); }

  .mobile-contact-card {
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(35,240,142,0.24);
    border-radius: 22px;
    background: rgba(255,255,255,0.035);
    color: var(--muted);
    display: grid;
    gap: 6px;
    font-size: 12px;
    line-height: 1.4;
  }

  .mobile-contact-card span { display: block; }

  .mobile-contact-card strong {
    display: block;
    color: var(--lime);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 2px;
  }

  .mobile-contact-card a { color: #fff; }

  .mobile-xdocu-button {
    min-height: 38px;
    margin-top: 10px;
    border: 1px solid var(--lime) !important;
    border-radius: 999px;
    padding: 0 18px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    background: rgba(35,240,142,0.06);
  }

  .intro,
  .feature-band,
  .engineering,
  .xdocu { grid-template-columns: 1fr; }

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

  .module-grid,
  .image-cards,
  .footer { grid-template-columns: 1fr 1fr; }

  .logo-stage {
    border-left: 0;
    border-top: 1px solid var(--lime);
    padding: 34px 0 0;
  }

  .xdocu .button { width: max-content; }

  .process-star {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .process-star::before,
  .process-star::after {
    display: none;
  }

  .process-core,
  .star-card {
    position: static;
    width: 100%;
  }

  .process-core {
    grid-column: 1 / -1;
    border-radius: 28px;
    min-height: 190px;
  }
}

@media (max-width: 680px) {
  .site-header { height: 86px; padding-inline: 20px; }
  .brand img { width: 172px; }
  .menu-button { width: 50px; height: 50px; }
  .hero { min-height: 680px; }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(3,7,8,0.98) 0%, rgba(4,9,11,0.7) 50%, rgba(4,9,11,0.98) 100%),
      url("assets/hero.png") 62% bottom / auto 70% no-repeat;
  }
  .hero-content { padding: 124px 20px 56px; }
  h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 54px);
    line-height: 0.98;
    overflow-wrap: normal;
  }
  .de-mobile-split {
    display: block;
    color: transparent;
    font-size: 0;
    line-height: 0;
  }
  .de-mobile-split::before,
  .de-mobile-split::after {
    display: block;
    color: #fff;
    font-size: clamp(40px, 12vw, 54px);
    line-height: 0.98;
  }
  .de-mobile-split::before {
    content: "PRODUKTIONS-";
  }
  .de-mobile-split::after {
    content: "SYSTEME";
  }
  .hero-green,
  .hero-green span,
  .hero-en-lines,
  .hero-en-lines span {
    display: block;
  }
  html[lang="en"] h1 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .title-white { color: #fff; }
  h2 { font-size: 32px; }
  .hero-actions,
  .button { width: 100%; }
  .hero-copy {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .button {
    min-height: 54px;
    max-width: 350px;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.15;
    white-space: normal;
  }
  .button.compact {
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
    max-width: 320px;
  }
  .section-block,
  .footer { padding: 64px 20px; }
  .solution-grid,
  .process-grid,
  .module-grid,
  .image-cards,
  .footer,
  .checkbox-grid { grid-template-columns: 1fr; }
  .process-star { grid-template-columns: 1fr; }
  .star-card {
    min-height: 0;
    padding: 24px 20px;
  }
  .process-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
  }
  .solution-card { min-height: 285px; }
  .feature-band img { min-height: 250px; }
  .assistant-launcher,
  .assistant-bubble { display: none !important; }
  .assistant-launcher.show {
    display: block !important;
    right: 18px;
    bottom: 24px;
    width: 58px;
    height: 58px;
  }
  body.cookie-pending .assistant-launcher.show { bottom: 164px; }
  .cookie-banner {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }
  #mobile-menu-toggle:checked ~ .assistant-launcher {
    display: none !important;
  }

  .modal,
  .assistant-chat-modal,
  .project-modal { padding: 12px; }
  .modal-box,
  .assistant-chat-box,
  .project-box { padding: 24px 18px; border-radius: 22px; }
  textarea { min-height: 86px; }
  .footer-bottom {
    position: static;
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding-top: 14px;
  }
  .footer,
  .footer p,
  .footer a:not(.button),
  .footer-bottom,
  .xdocu p,
  .eyebrow {
    overflow-wrap: anywhere;
  }
  .footer .button,
  .xdocu .button {
    display: inline-flex;
    width: min(100%, 320px);
    max-width: 100%;
  }
  .final-claim {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1.18;
    letter-spacing: 0.08em;
  }
}







