@font-face {
  font-family: "Geist Sans";
  src: url("assets/fonts/Geist-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --blue: #009ee2;
  --blue-action: #0077b6;
  --blue-dark: #005f8e;
  --ink: #15191d;
  --muted: #65717b;
  --line: #d8e0e5;
  --surface: #f3f6f8;
  --white: #ffffff;
  --signal: #009ee2;
  --blue-soft: #dff4fc;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
  --font-sans: "Geist Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 224, 229, 0.9);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 34px rgba(21, 25, 29, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 175px;
}

.brand-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-bottom: 5px solid var(--blue);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
}

.brand-mark.image-mark {
  overflow: hidden;
  background: transparent;
  border: 0;
}

.brand-mark.image-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0;
  font-family: var(--font-sans);
  font-weight: 300;
}

.brand strong span,
h1 span,
.claim span {
  color: var(--blue);
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #303942;
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  padding: 28px 0;
  border-top: 3px solid transparent;
}

.nav a:hover {
  color: var(--blue-dark);
  border-top-color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 158, 226, 0.22);
}

.header-cta {
  color: var(--white);
  background: var(--blue-action);
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue);
  transition: transform 220ms ease, opacity 220ms ease, width 220ms ease;
}

.menu-toggle span:nth-child(2) {
  width: 14px;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 170px max(28px, calc((100vw - var(--max)) / 2)) 86px;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  animation: heroDrift 30s var(--ease) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 18, 24, 0.88) 0%, rgba(10, 18, 24, 0.67) 42%, rgba(10, 18, 24, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 18, 24, 0.48), rgba(10, 18, 24, 0.04) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blue-soft);
}

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

h1,
h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 300;
}

.hero-content > * {
  animation: heroLift 1250ms var(--ease) both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 140ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 260ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 380ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 500ms;
}

h1 {
  margin-bottom: 6px;
  max-width: 920px;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: 0;
}

.claim {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 2vw, 24px);
}

.hero-3d {
  position: absolute;
  right: max(52px, calc((100vw - var(--max)) / 2));
  top: 158px;
  z-index: 2;
  width: 310px;
  height: 250px;
  perspective: 900px;
  pointer-events: none;
  opacity: 0.3;
}

.model-stack {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(62deg) rotateZ(-36deg);
  animation: modelFloat 11s ease-in-out infinite;
}

.model-floor,
.model-core,
.model-line {
  position: absolute;
  display: block;
  transform-style: preserve-3d;
}

.model-floor {
  width: 210px;
  height: 150px;
  border: 2px solid rgba(223, 244, 252, 0.72);
  background: linear-gradient(135deg, rgba(0, 158, 226, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 22px 50px rgba(0, 158, 226, 0.22);
}

.floor-a {
  left: 42px;
  top: 44px;
  transform: translateZ(0);
}

.floor-b {
  left: 66px;
  top: 70px;
  transform: translateZ(42px);
}

.floor-c {
  left: 90px;
  top: 96px;
  transform: translateZ(84px);
}

.model-core {
  left: 142px;
  top: 82px;
  width: 62px;
  height: 94px;
  background: rgba(0, 158, 226, 0.86);
  border: 1px solid rgba(223, 244, 252, 0.8);
  box-shadow: 0 0 34px rgba(0, 158, 226, 0.55);
  transform: translateZ(112px);
}

.model-line {
  left: 42px;
  width: 230px;
  height: 1px;
  background: rgba(223, 244, 252, 0.62);
  transform-origin: left center;
}

.line-a {
  top: 54px;
  transform: translateZ(122px) rotateZ(90deg);
}

.line-b {
  top: 126px;
  transform: translateZ(122px) rotateZ(0deg);
}

.line-c {
  top: 196px;
  transform: translateZ(122px) rotateZ(0deg);
}

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

.button.primary {
  color: var(--white);
  background: var(--blue-action);
}

.button.dark-cta {
  color: var(--white);
  background: #0e1114;
  border-color: #0e1114;
  box-shadow: 0 16px 34px rgba(14, 17, 20, 0.22);
}

.button.dark-cta:hover {
  background: #20272d;
  border-color: #20272d;
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.button.secondary.dark {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.button.large {
  min-height: 58px;
  padding: 0 28px;
}

.hero-panel {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 74px;
  z-index: 3;
  width: min(360px, calc(100vw - 56px));
  padding: 26px;
  color: var(--white);
  background: rgba(0, 95, 142, 0.88);
  border-top: 6px solid var(--blue);
}

.hero-panel span,
.service-card span,
.timeline span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-soft);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.band {
  background: var(--surface);
}

.section,
.intro,
.split-section,
.profile,
.contact {
  padding: 96px max(28px, calc((100vw - var(--max)) / 2));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 76px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.split-copy h2,
.profile-card h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-grid p,
.split-copy p,
.profile-card p {
  color: #3f4a53;
  font-size: 20px;
}

.intro-grid p {
  letter-spacing: 0.018em;
}

.text-blue {
  color: var(--blue);
  font-weight: 400;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 46px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading > h2:only-child {
  grid-column: 2;
}

.section-heading.compact {
  max-width: 780px;
  display: block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: block;
  min-height: 250px;
  padding: 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  content: "↗";
}

.service-card:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-3px);
  border-color: rgba(0, 158, 226, 0.45);
  box-shadow: 0 18px 42px rgba(21, 25, 29, 0.08);
}

.service-card span {
  color: var(--blue);
}

.service-card h3 {
  margin-bottom: 18px;
  max-width: 520px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
}

.service-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 17px;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.56fr);
  gap: 54px 58px;
  padding: 104px max(28px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, #f3f8fb 0%, #f3f8fb 72%, #e5f3f9 72%, #e5f3f9 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-image {
  grid-column: 1 / -1;
  margin: -18px 0 0;
  height: min(520px, 48vw);
  min-height: 340px;
  overflow: hidden;
  background: #d7e3ea;
}

.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.quality-image:hover img {
  transform: scale(1.035);
}

.quality-main h2 {
  margin-bottom: 24px;
  max-width: 1000px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
}

.quality-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.quality-main p {
  color: #35414a;
  font-size: 19px;
}

.quality-statement {
  display: grid;
  align-content: space-between;
  min-height: 285px;
  padding: 30px;
  background: var(--white);
  border-top: 6px solid var(--blue);
  box-shadow: 0 16px 36px rgba(21, 25, 29, 0.07);
}

.quality-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--ink) !important;
  font-size: clamp(24px, 2.6vw, 34px) !important;
  line-height: 1.14;
}

.quality-action {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.quality-context {
  max-width: 760px;
}

.quality-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.quality-points span {
  min-height: 106px;
  padding: 20px;
  background: var(--white);
  border-bottom: 5px solid var(--blue);
  color: #253039;
  font-size: 18px;
  font-weight: 500;
}

.download-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 30px;
  padding: 28px;
  color: var(--white);
  background: var(--blue-dark);
  border-left: 6px solid var(--blue);
}

.download-teaser span {
  display: block;
  margin-bottom: 8px;
  color: #a9e5fb;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.download-teaser strong {
  display: block;
  max-width: 760px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.12;
}

.download-teaser p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.download-teaser .button {
  color: var(--white);
  background: var(--blue-action);
  white-space: nowrap;
}

.quality-list {
  padding: 34px;
  background: var(--white);
  border-top: 7px solid var(--blue);
  box-shadow: 0 18px 46px rgba(21, 25, 29, 0.08);
}

.quality-list h3 {
  margin-bottom: 18px;
  font-size: 25px;
}

.quality-list ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-list li {
  position: relative;
  padding-left: 22px;
  color: #3e4a53;
}

.quality-list li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--blue);
  content: "";
}

.quality-example {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--blue-dark);
  color: var(--white);
}

.quality-example img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.quality-example div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
}

.quality-example span {
  margin-bottom: 12px;
  color: #a9e5fb;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.quality-example strong {
  max-width: 760px;
  font-size: clamp(27px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.1;
}

.quality-example p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.process-section {
  padding: 90px max(28px, calc((100vw - var(--max)) / 2));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid div {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
}

.process-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.process-cta .button {
  min-width: 240px;
  justify-content: center;
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  display: grid;
  max-width: 920px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 24px 64px 24px 26px;
  color: #202830;
  cursor: pointer;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.18;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 26px;
  top: 50%;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  max-width: 780px;
  margin: 0;
  padding: 0 26px 28px;
  color: #4a5660;
  font-size: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  color: var(--white);
  background: var(--ink);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.split-copy h2 + p {
  margin-top: 34px;
}

.principles {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.principles div {
  padding: 34px;
  background: #20262b;
  border-left: 5px solid var(--blue);
  transition: transform 220ms ease, background-color 220ms ease;
}

.principles div:hover {
  transform: translateX(4px);
  background: #242d34;
}

.principles strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.principles span {
  color: rgba(255, 255, 255, 0.72);
}

.industries {
  background: var(--surface);
}

.industry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.industry-row span {
  padding: 13px 16px;
  color: #263039;
  background: var(--white);
  border-left: 4px solid var(--blue);
  font-weight: 600;
  transition: transform 180ms ease;
}

.industry-row span:hover {
  transform: translateY(-2px);
}

.seo-hub {
  background: var(--white);
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.seo-link-grid a {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.seo-link-grid a:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-3px);
  border-color: rgba(0, 158, 226, 0.38);
  box-shadow: 0 16px 38px rgba(21, 25, 29, 0.08);
}

.seo-link-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.18;
}

.seo-link-grid span {
  color: #4a5660;
  font-size: 17px;
}

.profile {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: 34px;
  align-items: stretch;
}

.profile-card {
  padding: 54px;
  background: var(--surface);
  border-top: 7px solid var(--blue);
}

.profile-card p {
  margin-top: 24px;
}

.profile-photo {
  width: 168px;
  height: 168px;
  margin: 28px 0 30px;
  overflow: hidden;
  background: #d8e0e5;
  border: 1px solid var(--line);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 25%;
  filter: grayscale(1);
  transition: filter 260ms ease, transform 400ms var(--ease);
}

.profile-photo:hover img {
  filter: grayscale(0.25);
  transform: scale(1.03);
}

.experience-card,
.career-card {
  padding: 38px;
  background: var(--white);
  border-top: 7px solid var(--blue);
  box-shadow: 0 18px 46px rgba(21, 25, 29, 0.08);
}

.experience-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(34px, 5vw, 68px);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 0.95;
}

.experience-card strong,
.career-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.18;
}

.experience-card p,
.career-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.career-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: 46px;
  align-items: start;
  padding: 96px max(28px, calc((100vw - var(--max)) / 2));
  background: #f8fafb;
  border-top: 1px solid var(--line);
}

.career-section h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.04;
}

.career-section p {
  color: #3f4a53;
  font-size: 20px;
}

.career-card .button {
  margin-top: 24px;
}

.timeline {
  display: grid;
  align-content: stretch;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline div {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--blue);
}

.timeline strong {
  display: block;
  font-size: 21px;
  line-height: 1.2;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  color: var(--white);
  background: var(--blue-dark);
  border-top: 10px solid var(--blue);
}

.contact .section-kicker {
  color: var(--blue-soft);
}

.contact-details {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-details a {
  color: var(--white);
  font-weight: 700;
}

.map-section {
  position: relative;
  height: 420px;
  background: var(--surface);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.18);
}

.map-consent {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  height: 100%;
  padding: 44px max(28px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(243, 248, 251, 0.96), rgba(229, 243, 249, 0.92)),
    repeating-linear-gradient(45deg, rgba(0, 158, 226, 0.11) 0 1px, transparent 1px 18px);
}

.map-consent strong {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300;
  line-height: 1;
}

.map-consent p {
  max-width: 620px;
  margin: 0;
  color: #3f4a53;
  font-size: 18px;
}

.map-consent a {
  color: var(--blue-dark);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  display: grid;
  gap: 20px;
  width: min(520px, calc(100vw - 40px));
  padding: 26px;
  color: var(--white);
  background: rgba(14, 17, 20, 0.98);
  border-top: 6px solid var(--blue);
  box-shadow: 0 28px 80px rgba(14, 17, 20, 0.34);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-copy {
  display: grid;
  gap: 8px;
}

.cookie-copy span {
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-copy strong {
  color: var(--white);
  font-size: 27px;
  line-height: 1.1;
}

.cookie-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cookie-options {
  display: grid;
  gap: 10px;
}

.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
}

.cookie-option span {
  display: grid;
  gap: 2px;
}

.cookie-option strong {
  color: var(--white);
  font-size: 16px;
}

.cookie-option small {
  color: rgba(255, 255, 255, 0.58);
}

.cookie-option.is-fixed {
  opacity: 0.76;
}

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

.cookie-actions .button {
  flex: 1 1 auto;
  justify-content: center;
  min-height: 46px;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0e1114;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(160px, 0.55fr));
  gap: 54px;
  padding: 78px max(28px, calc((100vw - var(--max)) / 2)) 64px;
}

.footer .brand {
  min-width: 0;
  color: var(--white);
}

.footer .brand-mark.image-mark {
  padding: 8px;
  background: var(--white);
}

.footer .brand strong {
  color: var(--white);
}

.footer-brand p {
  max-width: 360px;
  margin: 30px 0 28px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
}

.footer-brand p span {
  color: var(--blue);
}

.footer-brand address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-links,
.footer-social {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links a,
.footer-links span {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links a,
.social-icon {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--blue-soft);
  transform: translateX(4px);
}

.footer-social strong {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.social-icon.linkedin {
  background: var(--blue-action);
  border-color: var(--blue-action);
  font-family: Arial, sans-serif;
}

.social-icon.instagram {
  position: relative;
}

.social-icon.instagram::before {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  content: "";
}

.social-icon.instagram::after {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 5px;
  height: 5px;
  background: currentColor;
  content: "";
}

.social-icon.facebook {
  font-family: Arial, sans-serif;
  font-size: 25px;
}

.social-icon:not(a) {
  opacity: 0.45;
}

a.social-icon:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  padding: 24px max(28px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-area {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2)) 34px;
}

.footer-area strong {
  color: var(--white);
  font-weight: 500;
}

.footer-area span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1200ms var(--ease), transform 1200ms var(--ease);
}

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

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.06) translateX(-1.2%);
  }
  to {
    transform: scale(1.035) translateX(0);
  }
}

@keyframes modelFloat {
  0%,
  100% {
    transform: rotateX(62deg) rotateZ(-36deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateX(62deg) rotateZ(-36deg) translate3d(0, -10px, 18px);
  }
}

.page-hero {
  padding: 170px max(28px, calc((100vw - var(--max)) / 2)) 84px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 24, 31, 0.92), rgba(15, 24, 31, 0.72)),
    url("hero-baustelle-1600.jpg") center / cover;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 62px;
  align-items: end;
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(12, 20, 27, 0.95), rgba(12, 20, 27, 0.72) 54%, rgba(12, 20, 27, 0.42)),
    url("hero-infrastruktur-1600.jpg") center / cover;
}

.services-hero h1 {
  max-width: 840px;
  font-size: clamp(48px, 6vw, 84px);
}

.services-hero .hero-keyword {
  color: var(--blue);
}

.services-hero-copy {
  padding: 28px 0 0 30px;
  border-left: 6px solid var(--blue);
}

.services-hero-copy p {
  margin-bottom: 28px;
}

.hero-service-links {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-service-links a {
  position: relative;
  padding: 16px 48px 16px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 220ms ease, transform 220ms ease;
}

.hero-service-links a::after {
  position: absolute;
  right: 18px;
  content: "↗";
  color: var(--blue-soft);
}

.hero-service-links a:hover {
  transform: translateX(4px);
  background: rgba(0, 158, 226, 0.24);
}

.career-hero {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.63) 58%, rgba(0, 44, 70, 0.28)),
    url("hero-baustelle-1600.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.career-hero-inner {
  max-width: 980px;
}

.career-hero .eyebrow {
  color: var(--blue);
}

.career-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(48px, 6.6vw, 92px);
  line-height: 1.08;
}

.career-hero p {
  max-width: 780px;
  margin-top: 32px;
  padding-left: 24px;
  color: var(--ink);
  border-left: 6px solid var(--blue);
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.18;
}

.career-flow {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 34px;
  padding: 104px max(28px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(216, 224, 229, 0.7) calc(50% - 1px), rgba(216, 224, 229, 0.7) 50%, transparent 50%),
    var(--white);
}

.career-line {
  position: relative;
  padding: 12px 0 34px;
}

.career-line::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 6px;
  background: var(--blue);
  content: "";
}

.career-line-left {
  grid-column: 1 / span 7;
}

.career-line-right {
  grid-column: 6 / span 7;
  margin-top: 46px;
}

.career-line h2,
.career-list-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.02;
}

.career-line p {
  max-width: 760px;
  color: #3f4a53;
  font-size: 21px;
}

.career-list-panel {
  grid-column: 1 / span 7;
  padding: 44px 0 0;
  border-top: 1px solid var(--line);
}

.career-list-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.career-list-panel li {
  min-height: 112px;
  padding: 22px;
  background: #f7fafb;
  border-left: 5px solid var(--blue);
  color: #2f3a42;
  font-size: 18px;
}

.career-join {
  grid-column: 8 / span 5;
  align-self: end;
  display: grid;
  gap: 28px;
  padding: 38px;
  color: var(--white);
  background: var(--blue);
  border-top: 8px solid var(--blue-dark);
}

.career-join span {
  color: var(--white);
  font-size: clamp(54px, 7vw, 98px);
  font-weight: 300;
  line-height: 0.9;
}

.career-join strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 25px;
}

.career-join p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.career-join .button.dark-cta {
  justify-content: center;
}

.career-intro-text {
  max-width: 680px;
  padding-left: 28px;
  color: #33414a;
  border-left: 6px solid var(--blue);
  font-family: var(--font-sans);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.references-hero {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(12, 20, 27, 0.94), rgba(12, 20, 27, 0.72) 56%, rgba(12, 20, 27, 0.32)),
    url("hero-referenzen-1600.jpg") center / cover;
}

.references-hero h1 {
  max-width: 980px;
  font-size: clamp(54px, 7vw, 108px);
}

.references-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: 70px;
  padding: 96px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.references-intro h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.03;
}

.references-intro p {
  align-self: end;
  color: #3f4a53;
  font-size: 20px;
}

.references-list {
  display: grid;
  padding: 32px max(28px, calc((100vw - var(--max)) / 2)) 96px;
}

.reference-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: 34px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.reference-item > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.reference-meta {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.reference-item h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
}

.reference-item p {
  max-width: 760px;
  color: #3f4a53;
  font-size: 18px;
}

.reference-video-link {
  position: relative;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 520px);
  margin-top: 24px;
  padding: 14px 16px 14px 22px;
  background: #f3f8fb;
  border-left: 5px solid var(--blue);
  color: var(--ink);
  transition: background-color 220ms ease, transform 220ms ease;
}

.reference-video-link::before {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  background: var(--blue);
  content: "";
}

.reference-video-link span {
  flex: 1 1 auto;
  color: #33414a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reference-video-link strong {
  flex: 0 0 auto;
  padding: 10px 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  line-height: 1;
}

.reference-video-link:hover {
  background: #e7f3f9;
  transform: translateY(-3px);
}

.reference-item ul {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-item li {
  padding: 12px 14px;
  background: #f3f8fb;
  border-left: 4px solid var(--blue);
  color: #2f3a42;
  font-weight: 500;
}

.content-page {
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
}

.service-landing-hero,
.download-landing-hero {
  min-height: 610px;
  background:
    linear-gradient(90deg, rgba(243, 248, 251, 0.98), rgba(243, 248, 251, 0.78)),
    url("hero-leistungen-1600.jpg") center / cover;
}

.download-landing-hero {
  background:
    linear-gradient(90deg, rgba(243, 248, 251, 0.98), rgba(243, 248, 251, 0.72)),
    url("bewehrungskontrolle-1200.jpg") center / cover;
}

.lead-landing-hero {
  min-height: 640px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(243, 248, 251, 0.98), rgba(243, 248, 251, 0.72)),
    url("bewehrungskontrolle-1200.jpg") center / cover;
}

.service-landing-hero,
.download-landing-hero,
.lead-landing-hero {
  color: var(--ink);
}

.service-landing-hero .eyebrow,
.download-landing-hero .eyebrow,
.lead-landing-hero .eyebrow {
  color: var(--blue);
}

.service-landing-hero .services-hero-copy p,
.download-landing-hero .services-hero-copy p,
.lead-landing-hero .services-hero-copy p {
  color: #263039;
}

.lead-contact-line {
  margin-top: 20px;
  font-size: 17px;
}

.lead-contact-line a {
  color: var(--blue-dark);
  font-weight: 700;
}

.lead-benefits-section {
  padding-top: clamp(72px, 8vw, 120px);
}

.lead-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.lead-benefit {
  min-height: 138px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 5px solid var(--blue);
}

.lead-benefit:nth-child(3n) {
  border-right: 0;
}

.lead-benefit strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.22;
}

.lead-content {
  padding-top: 0;
}

.lead-content-grid {
  align-items: stretch;
}

.lead-form-section {
  background: var(--surface);
}

.lead-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(520px, 0.58fr);
  gap: 56px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.lead-form-layout h2 {
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.98;
}

.lead-form-layout > div > p:not(.section-kicker) {
  color: #4b5964;
  font-size: 21px;
}

.lead-form-card {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border-top: 6px solid var(--blue);
  box-shadow: 0 18px 58px rgba(21, 25, 29, 0.08);
}

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

.lead-form-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.lead-form-card input,
.lead-form-card select,
.lead-form-card textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
}

.lead-form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.lead-form-card input:focus,
.lead-form-card select:focus,
.lead-form-card textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.file-field {
  padding: 20px;
  background: var(--surface);
  border-left: 5px solid var(--blue);
}

.is-hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.file-field small,
.form-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-success {
  margin: 0;
  padding: 18px;
  color: #0e1114;
  background: var(--blue-soft);
  border-left: 5px solid var(--blue);
}

.form-error {
  margin: 0;
  padding: 16px 18px;
  color: #7a0015;
  font-weight: 800;
  line-height: 1.35;
  background: #fff3f3;
  border: 2px solid #b00020;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.lead-email-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.email-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.email-checklist li {
  padding: 15px 16px;
  background: var(--surface);
  border-left: 5px solid var(--blue);
}

.email-checklist strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.email-attachment-warning {
  margin: 2px 0 0;
  padding: 18px 20px;
  color: #b00020;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
  background: #fff3f3;
  border: 2px solid #b00020;
}

.landing-page .text-block h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.landing-page .side-note .button {
  margin-top: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.28fr);
  gap: 56px;
  align-items: start;
}

.text-block {
  position: relative;
  padding: 38px;
  margin-bottom: 22px;
  background: var(--white);
  border-top: 5px solid var(--blue);
  box-shadow: 0 14px 40px rgba(21, 25, 29, 0.07);
}

.text-block.service-detail {
  padding-right: 72px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.text-block.service-detail:hover,
.text-block.service-detail:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(21, 25, 29, 0.11);
}

.service-detail-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
}

.service-detail-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.text-block.service-detail::after {
  position: absolute;
  top: 32px;
  right: 32px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  content: "↗";
}

.text-block h2,
.text-block h3 {
  margin-bottom: 16px;
}

.service-detail h2,
.service-keyword {
  color: var(--blue);
}

.text-block p {
  color: #3f4a53;
  font-size: 18px;
}

.text-block ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.text-block li {
  position: relative;
  padding-left: 22px;
  color: #3f4a53;
}

.text-block li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--blue);
  content: "";
}

.inline-download {
  margin-top: 28px;
  padding: 26px;
  background: var(--surface);
  border-left: 5px solid var(--blue);
}

.inline-download strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.18;
}

.inline-download p {
  margin-bottom: 18px;
}

.side-note {
  position: sticky;
  top: 118px;
  padding: 34px;
  background: var(--surface);
  border-left: 5px solid var(--blue);
}

.side-note strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.18;
}

.legal-page {
  max-width: 900px;
}

.legal-page h2 {
  margin-top: 38px;
}

.legal-page p,
.legal-page li {
  color: #3f4a53;
  font-size: 17px;
}

.legal-page .legal-source {
  margin-top: 44px;
  color: #7a8790;
  font-size: 14px;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  body.menu-open {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 10px 28px 28px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 60px rgba(21, 25, 29, 0.14);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms var(--ease), opacity 200ms ease;
  }

  .site-header.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 18px 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
    font-weight: 300;
  }

  .menu-toggle {
    display: block;
    grid-column: 4;
  }

  .hero {
    min-height: 820px;
  }

  .hero-3d {
    opacity: 0.42;
    right: 24px;
    top: 148px;
    transform: scale(0.72);
    transform-origin: top right;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 44px;
  }

  .intro-grid,
  .section-heading,
  .split-section,
  .profile,
  .career-section,
  .services-hero,
  .references-intro,
  .reference-item,
  .content-grid,
  .lead-form-layout,
  .contact,
  .quality-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading > h2:only-child {
    grid-column: auto;
  }

  .services-hero {
    min-height: 680px;
  }

  .services-hero-copy {
    max-width: 720px;
  }

  .quality-copy,
  .quality-points {
    grid-template-columns: 1fr;
  }

  .download-teaser {
    grid-template-columns: 1fr;
  }

  .download-teaser .button {
    width: 100%;
  }

  .career-flow {
    grid-template-columns: 1fr;
    background: var(--white);
  }

  .career-line-left,
  .career-line-right,
  .career-list-panel,
  .career-join {
    grid-column: auto;
  }

  .career-line-right {
    margin-top: 0;
  }

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

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

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

  .lead-benefit:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .lead-benefit:nth-child(2n) {
    border-right: 0;
  }

  .side-note {
    position: static;
  }

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

  .quality-image {
    height: 420px;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 76px;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
    width: 46px;
    height: 46px;
  }

  .nav {
    top: 76px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero,
  .page-hero,
  .section,
  .intro,
  .split-section,
  .profile,
  .career-section,
  .career-flow,
  .content-page,
  .contact,
  .quality-section,
  .process-section,
  .references-intro,
  .references-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lead-landing-hero {
    min-height: 690px;
    background-position: 58% center;
  }

  .lead-benefits-grid,
  .form-grid,
  .email-checklist {
    grid-template-columns: 1fr;
  }

  .lead-benefit,
  .lead-benefit:nth-child(2n),
  .lead-benefit:nth-child(3n) {
    min-height: auto;
    border-right: 0;
  }

  .lead-form-card {
    padding: 24px;
  }

  .hero {
    min-height: 760px;
    padding-top: 132px;
    padding-bottom: 46px;
  }

  .hero-3d {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 18, 24, 0.91), rgba(10, 18, 24, 0.58));
  }

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

  .button {
    width: 100%;
  }

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

  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .seo-link-grid a {
    min-height: 0;
  }

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

  .service-card {
    min-height: 240px;
  }

  .services-hero {
    min-height: 620px;
    background:
      linear-gradient(90deg, rgba(12, 20, 27, 0.95), rgba(12, 20, 27, 0.72) 54%, rgba(12, 20, 27, 0.42)),
      url("hero-infrastruktur-900.jpg") center / cover;
  }

  .services-hero h1 {
    font-size: clamp(36px, 11vw, 44px);
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .services-hero-copy {
    padding-left: 20px;
  }

  .text-block.service-detail {
    padding: 30px 48px 30px 26px;
  }

  .text-block.service-detail::after {
    top: 28px;
    right: 22px;
    font-size: 20px;
  }

  .text-block.service-detail h2 {
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .career-list-panel ul {
    grid-template-columns: 1fr;
  }

  .reference-item {
    gap: 18px;
  }

  .reference-video-link {
    flex-wrap: wrap;
    width: 100%;
  }

  .reference-video-link strong {
    width: 100%;
    text-align: center;
  }

  .reference-item ul {
    grid-template-columns: 1fr;
  }

  .profile-card {
    padding: 34px 24px;
  }

  .profile-photo img {
    min-height: 0;
  }

  .quality-image {
    height: 300px;
    min-height: 260px;
  }

  .quality-main h2 {
    overflow-wrap: anywhere;
  }

  .quality-list {
    padding: 28px 22px;
  }

  .quality-example {
    grid-template-columns: 1fr;
  }

  .quality-example img {
    min-height: 210px;
    max-height: 300px;
  }

  .map-section {
    height: 340px;
  }

  .map-consent {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 18px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 52px 20px 42px;
  }

  .footer-bottom {
    display: grid;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-area {
    padding-left: 20px;
    padding-right: 20px;
  }
}
