:root {
  --ink: #20282e;
  --navy: #173c68;
  --blue: #2b60a5;
  --green: #0f6036;
  --lime: #69ac45;
  --mist: #eef3f5;
  --line: #d8e0e4;
  --muted: #65717a;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.company-name {
  white-space: nowrap;
  hyphens: none;
  word-break: keep-all;
  overflow-wrap: normal;
}
a { color: inherit; text-decoration: none; }
svg {
  width: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-header {
  height: 92px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 38px;
  padding: 0 4.5vw;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216,224,228,.75);
  box-shadow: 0 8px 26px rgba(23,60,104,.06);
}
.brand img { width: 170px; height: auto; display: block; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform .24s ease, opacity .18s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle:focus-visible { outline: 3px solid rgba(105,172,69,.42); outline-offset: 2px; }
nav { display: flex; justify-content: center; gap: clamp(12px, 1.55vw, 28px); }
nav a {
  font-size: 13px;
  letter-spacing: .03em;
  color: #4e585f;
  position: relative;
  padding: 36px 0 34px;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 25px;
  height: 2px;
  background: var(--green);
  transition: right .25s ease;
}
nav a:hover::after { right: 0; }
nav a.active { color: var(--green); font-weight: 700; }
nav a.active::after { right: 0; }
.header-cta, .text-link, .service-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.header-cta {
  background: var(--blue);
  color: white;
  padding: 14px 18px;
  font-size: 13px;
}
.header-cta,
.button,
.circle-link,
.contact-page-link,
.map-close,
.menu-toggle {
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.header-cta:hover,
.button:hover,
.circle-link:hover,
.contact-page-link:hover,
.map-close:hover,
.menu-toggle:hover {
  border-color: var(--green);
  background: var(--green);
  color: white;
  transform: translateY(-2px);
}
.hero {
  min-height: calc(100vh - 92px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 55%;
}

/* Dezente Hero-Animationen */
.hero > img,
.subhero > img {
  animation: hero-image-in 1.4s cubic-bezier(.22, .61, .36, 1) both;
  will-change: transform, opacity;
}

.hero-overlay,
.subhero-shade {
  animation: hero-overlay-in 1s ease-out both;
}

.hero-content > *,
.subhero-content > *,
.contact-page-hero > div > *,
.contact-page-hero > aside,
.legal-hero > div > * {
  animation: hero-content-in .72s cubic-bezier(.22, .61, .36, 1) both;
}

.hero-content > :nth-child(2),
.subhero-content > :nth-child(2),
.contact-page-hero > div > :nth-child(2),
.legal-hero > div > :nth-child(2) {
  animation-delay: .08s;
}

.hero-content > :nth-child(3),
.subhero-content > :nth-child(3),
.contact-page-hero > div > :nth-child(3),
.legal-hero > div > :nth-child(3) {
  animation-delay: .16s;
}

.hero-content > :nth-child(4),
.subhero-content > :nth-child(4),
.contact-page-hero > aside {
  animation-delay: .24s;
}

.hero-facts {
  animation: hero-facts-in .72s .3s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes hero-image-in {
  from { opacity: .86; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-overlay-in {
  from { opacity: .72; }
  to { opacity: 1; }
}

@keyframes hero-content-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-facts-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero > img,
  .subhero > img,
  .hero-overlay,
  .subhero-shade,
  .hero-content > *,
  .subhero-content > *,
  .contact-page-hero > div > *,
  .contact-page-hero > aside,
  .legal-hero > div > *,
  .hero-facts {
    animation: none !important;
    transform: none !important;
  }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,18,34,.76) 0%, rgba(0,18,34,.5) 42%, rgba(0,18,34,.08) 78%),
    linear-gradient(0deg, rgba(0,18,34,.25), transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 86vw);
  margin-left: 8vw;
  padding-bottom: 70px;
}
.kicker {
  margin: 0 0 22px;
  color: #a8d48e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker.dark { color: var(--green); }
.hero-content > .kicker,
.subhero-content > .kicker,
.careerhero-card > .kicker,
.contact-page-hero > div > .kicker,
.legal-hero > div > .kicker {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .14em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 700;
  max-width: 900px;
}
.hero h1 span { color: #9bcf7d; }
.hero-copy {
  max-width: 620px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  margin: 30px 0 28px;
  color: rgba(255,255,255,.86);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 750;
}
.button-primary,
.button-ghost,
.button-light {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: white;
}
.hero-facts {
  position: absolute;
  z-index: 3;
  right: 4.5vw;
  bottom: 0;
  display: flex;
  background: white;
  color: var(--ink);
}
.hero-facts div { padding: 20px 27px; border-right: 1px solid var(--line); min-width: 150px; }
.hero-facts strong { display: block; color: var(--blue); font-size: 24px; }
.hero-facts span { font-size: 11px; color: #647079; }
.section { padding: 110px 8vw; }
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: end;
}
h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.intro-copy > p {
  margin: 0 0 30px;
  font-size: 19px;
  line-height: 1.7;
  color: #56626a;
}
.text-link { color: var(--green); font-size: 14px; }
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.service-card {
  height: min(650px, 52vw);
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border: 4px solid #fff;
  box-sizing: border-box;
  color: white;
}
.service-card > img,
.service-image-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s ease;
}
.service-image-link { position: absolute; inset: 0; display: block; }
.service-card:hover > img,
.service-card:hover .service-image-link img { transform: scale(1.035); }
.service-shade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.03) 70%);
  pointer-events: none;
}
.service-number {
  position: absolute; top: 32px; left: 36px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .15em;
  pointer-events: none;
}
.service-content { position: absolute; left: 38px; right: 38px; bottom: 36px; }
.service-content > p {
  margin: 0 0 9px;
  color: #a8d48e;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .17em;
  font-weight: 800;
}
.service-content h3 { margin: 0 0 16px; font-size: clamp(31px, 3vw, 48px); letter-spacing: -.035em; }
.service-text { display: block; max-width: 590px; line-height: 1.6; color: rgba(255,255,255,.79); }
.service-content a { margin-top: 24px; font-size: 13px; color: white; }
.process { background: var(--mist); }
.process-heading { max-width: 850px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; background: var(--line); }
.process-grid article { background: var(--mist); padding: 38px 36px 42px; }
.process-grid span { color: var(--blue); font-weight: 800; font-size: 12px; }
.process-grid h3 { font-size: 26px; margin: 44px 0 12px; }
.process-grid p { margin: 0; line-height: 1.6; color: #647079; }
.why-ancotek {
  background: var(--navy);
  color: white;
  padding: 110px 8vw;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 9vw;
  align-items: start;
}
.why-ancotek h2 { font-size: clamp(45px, 5vw, 70px); }
.why-ancotek-heading > p:last-child { max-width: 520px; margin: 28px 0 0; color: rgba(255,255,255,.72); line-height: 1.75; font-size: 17px; }
.why-ancotek-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.18); }
.why-ancotek-grid article { min-height: 150px; padding: 27px 30px 30px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.why-ancotek-grid article:nth-child(even) { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.18); }
.why-ancotek-grid span { display: block; margin-bottom: 22px; color: #a8d48e; font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.why-ancotek-grid p { margin: 0; max-width: 390px; font-size: 18px; font-weight: 700; line-height: 1.45; }
.career {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.02) 50%, rgba(0,0,0,0) 100%),
    url("/images/karriere-mitarbeiter-schaltschrank.webp");
  background-size: cover;
  background-position: center;
}
.career-card {
  width: min(620px, 58%);
  background: rgba(82, 158, 61, .96);
  color: white;
  padding: 64px;
  position: relative;
  z-index: 2;
  box-shadow: 0 28px 70px rgba(12,28,41,.18);
}
.career-card h2 { font-size: clamp(38px, 4.2vw, 60px); }
.career-card > p:not(.kicker) { max-width: 550px; line-height: 1.7; color: rgba(255,255,255,.82); margin: 26px 0 30px; }
.career-pattern { display: none; }
.career-pattern span {
  position: absolute; width: 50%; height: 50%;
  border: 2px solid rgba(43,96,165,.18);
  transform: rotate(60deg) skewY(-30deg);
}
.career-pattern span:nth-child(2) { right: 0; top: 18%; border-color: rgba(105,172,69,.28); }
.career-pattern span:nth-child(3) { left: 25%; bottom: 0; border-color: rgba(32,40,46,.12); }
.contact {
  padding: 100px 8vw;
  display: grid;
  grid-template-columns: 1.4fr .8fr auto;
  align-items: end;
  gap: 5vw;
  border-top: 1px solid var(--line);
}
.contact h2 { font-size: clamp(42px, 5.2vw, 72px); }
.contact-details { display: flex; flex-direction: column; gap: 10px; color: #536069; }
.contact-details a { font-size: 18px; font-weight: 700; color: var(--navy); }
.contact-details p { margin: 8px 0 0; }
.circle-link {
  width: 88px; height: 88px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue); color: white;
  font-size: 25px;
}
.contact-page-link {
  min-height: 72px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: var(--blue);
  color: white;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}
.contact-page-link span { font-size: 20px; font-weight: 400; }
footer {
  background: #192127;
  color: rgba(255,255,255,.6);
  padding: 48px 8vw;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 36px;
  align-items: center;
  font-size: 12px;
}
.footer-memberships {
  grid-column: 1 / -1;
  width: 100%;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-memberships > span {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-membership-logos { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.footer-membership-link {
  width: 154px;
  height: 64px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: white;
  transition: transform .22s ease, box-shadow .22s ease;
}
.footer-membership-link:hover { transform: translateY(-3px); box-shadow: 0 9px 24px rgba(0,0,0,.24); }
.footer-membership-link:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.footer-membership-link img { display: block; max-width: 100%; max-height: 42px; width: auto; height: auto; }
.footer-logo { display: inline-flex; width: max-content; }
.footer-logo img { width: 160px; height: auto; display: block; }
.footer-logo:hover { opacity: .78; }
footer > p { margin: 0; }
footer > div { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.footer-implementation { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
footer .footer-realisation {
  display: inline-flex;
  align-items: center;
  padding: 3px 0;
  transition: transform .22s ease, box-shadow .22s ease;
}
footer .footer-realisation img { display: block; width: 96px; max-width: 96px; height: auto; }
footer .footer-realisation:hover { transform: translateY(-2px); }

.contact-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 590px;
  padding: 95px 8vw 85px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 9vw;
  color: white;
  background: var(--navy);
}
.contact-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  z-index: -2;
}
.contact-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8,29,49,.88) 0%, rgba(8,29,49,.75) 48%, rgba(8,29,49,.32) 100%);
}
.contact-page-hero .breadcrumbs { margin-bottom: 55px; }
.contact-page-hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(52px, 6.6vw, 92px);
  line-height: .98;
  letter-spacing: -.055em;
}
.contact-page-hero > div > p:last-child {
  max-width: 750px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.7;
}
.contact-page-hero aside {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-page-hero aside span {
  margin-bottom: 18px;
  color: #a8d48e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-page-hero aside a { font-size: 18px; font-weight: 700; }
.team-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 9vw;
  align-items: end;
}
.team-intro > p { color: #65717a; line-height: 1.7; font-size: 17px; }
.contact-person-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
}
.contact-person {
  border: 1px solid var(--line);
  background: white;
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-person:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(24,45,60,.10); }
.contact-person-active { cursor: pointer; }
.person-open {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.person-open:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
.contact-person-active .person-open { min-height: 220px; display: flex; align-items: center; }
.contact-person-active .person-content { width: 100%; }
.person-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  object-position: 50% 38%;
}
.person-placeholder {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: end center;
  padding-bottom: 26px;
  color: rgba(255,255,255,.74);
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.22) 0 11%, transparent 11.5%),
    radial-gradient(ellipse at 50% 92%, rgba(255,255,255,.18) 0 28%, transparent 28.5%),
    linear-gradient(145deg, #234d76, var(--navy) 60%, #173455);
}
.person-placeholder::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.12);
}
.person-placeholder span {
  position: relative;
  z-index: 2;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.person-content { padding: 30px 28px 32px; }
.person-open .person-content { display: block; }
.person-area {
  min-height: 32px;
  margin: 0 0 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.45;
  text-transform: uppercase;
}
.person-content h3 { margin: 0 0 25px; font-size: 25px; letter-spacing: -.025em; }
.person-name { display: block; margin: 0 0 25px; font-size: 25px; font-weight: 700; letter-spacing: -.025em; }
.person-qualification { display: block; margin: -16px 0 24px; color: var(--muted); font-size: 13px; }
.person-action {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
.person-action span { color: var(--green); font-size: 18px; line-height: .8; }
.person-content dl { margin: 0; }
.person-content dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.person-content dt { color: #7a858d; font-size: 11px; }
.person-content dd { margin: 0; font-size: 13px; overflow-wrap: anywhere; }
.person-content dd a:hover { color: var(--green); }
.person-dialog {
  width: min(860px, calc(100vw - 40px));
  max-width: none;
  padding: 0;
  border: 0;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(8,22,31,.34);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
}
.person-dialog[open] { display: grid; }
.person-dialog-text-only { width: min(520px, calc(100vw - 40px)); grid-template-columns: 1fr; }
.person-dialog-text-only .person-dialog-content { padding: 58px 46px 42px; }
.person-dialog::backdrop { background: rgba(8,22,31,.78); }
.person-dialog-media { position: relative; min-height: 0; overflow: hidden; }
.person-dialog-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.person-dialog-content { padding: 64px 46px 48px; align-self: center; }
.person-dialog-content h2 { margin: 8px 0 42px; font-size: clamp(36px, 4vw, 52px); line-height: 1; }
.person-dialog-qualification { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.person-dialog-content h2 { overflow-wrap: anywhere; }
.person-dialog-contact { display: grid; gap: 20px; }
.person-dialog-contact div { padding-top: 16px; border-top: 1px solid var(--line); }
.person-dialog-contact span { display: block; margin-bottom: 7px; color: #7a858d; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.person-dialog-contact a { font-size: 15px; font-weight: 700; overflow-wrap: anywhere; }
.person-dialog-contact a:hover { color: var(--green); }
.person-vcard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 15px 18px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease;
}
.person-vcard:hover { background: var(--green); }
.person-vcard span { font-size: 18px; line-height: 1; }
.person-vcard:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.person-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font: 300 28px/1 Arial, sans-serif;
  cursor: pointer;
}
.person-dialog-close:hover { background: var(--green); }
.person-dialog-close:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.location-section {
  padding: 90px 8vw;
  display: grid;
  grid-template-columns: 1.2fr .7fr auto;
  gap: 7vw;
  align-items: end;
  background: var(--green);
  color: white;
}
.location-section h2 { font-size: clamp(40px, 4.5vw, 62px); }
.location-details { display: flex; flex-direction: column; gap: 9px; }
.location-details p { margin: 0 0 14px; color: rgba(255,255,255,.75); line-height: 1.6; }
.location-details a { font-weight: 700; }
.map-open { border: 0; cursor: pointer; font-family: inherit; }
.map-dialog {
  width: min(1040px, calc(100vw - 40px));
  max-width: none;
  padding: 0;
  border: 0;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(8,22,31,.34);
}
.map-dialog::backdrop {
  background: rgba(8,22,31,.75);
  backdrop-filter: blur(4px);
}
.map-dialog-head {
  min-height: 120px;
  padding: 28px 32px 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}
.map-dialog-head .kicker { margin-bottom: 8px; }
.map-dialog-head h2 { font-size: 30px; letter-spacing: -.03em; }
.map-dialog-head p:last-child { margin: 8px 0 0; color: #65717a; }
.map-close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font: 300 30px/1 Arial, sans-serif;
}
.map-close:hover { background: var(--green); color: white; }
.map-frame {
  height: min(58vh, 560px);
  min-height: 390px;
  display: grid;
  place-items: center;
  background: var(--mist);
  color: #65717a;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-consent {
  width: min(680px, calc(100% - 48px));
  padding: 34px;
  text-align: center;
  color: var(--ink);
}
.map-consent h3 { margin: 0 0 14px; font-size: 24px; }
.map-consent p { margin: 0 auto 20px; line-height: 1.65; }
.map-consent-button { margin: 4px auto 20px; cursor: pointer; }
.map-consent .map-consent-links { margin-bottom: 0; font-size: 12px; }
.map-consent-links a { color: var(--green); font-weight: 800; }
.map-dialog-foot {
  padding: 19px 32px 21px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  font-size: 12px;
}
.map-dialog-foot p { margin: 0; color: #737f87; }
.map-dialog-foot a { color: var(--green); font-weight: 800; white-space: nowrap; }

.subhero {
  min-height: 690px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
}
.subhero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 45%;
}
.subhero.fernhero > img { object-position: center 54%; }
.subhero.energyhero > img { object-position: center 48%; }
.subhero.efficiencyhero > img { object-position: center 50%; }
.subhero.planninghero > img { object-position: center 50%; }
.subhero.careerhero > img { object-position: center 43%; }
.careerhero .subhero-shade {
  background: linear-gradient(90deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,.03) 54%, rgba(0,0,0,.06) 100%);
}
.careerhero .subhero-content { width: min(760px, 86vw); }
.careerhero .careerhero-card {
  width: min(680px, 54vw);
  margin: 0 0 70px 8vw;
  padding: 68px;
  background: rgba(105,172,69,.92);
  box-shadow: 0 28px 70px rgba(12,28,41,.2);
  backdrop-filter: blur(2px);
}
.careerhero .careerhero-card h1 {
  max-width: 570px;
  font-size: clamp(48px, 5.2vw, 76px);
}
.careerhero .careerhero-card > p:not(.kicker) {
  max-width: 550px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 18px;
}
.careerhero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
}
.careerhero-facts span { display: inline-flex; align-items: center; gap: 10px; }
.careerhero-facts span:not(:first-child)::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }

.career-benefits { background: #fff; }
.career-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  border: 1px solid var(--line);
  background: var(--line);
}
.career-benefit-grid article { min-height: 230px; padding: 34px; background: #f7f9fa; }
.career-benefit-grid span { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.career-benefit-grid h3 { margin: 34px 0 14px; color: var(--navy); font-size: 22px; }
.career-benefit-grid p { margin: 0; color: var(--muted); line-height: 1.65; }
.career-fields { background: #f7f9fa; }
.career-field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: #d9dfe3;
}
.career-field-grid article {
  min-height: 260px;
  padding: 38px;
  background: #fff;
}
.career-field-grid article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}
.career-field-grid h3 { margin-bottom: 16px; font-size: 23px; line-height: 1.16; }
.career-field-grid p { color: var(--muted); line-height: 1.7; }
.career-field-grid ul { list-style: none; padding: 0; margin: 25px 0 0; }
.career-field-grid li { position: relative; padding: 9px 0 9px 17px; border-top: 1px solid var(--line); color: #4f5c65; font-size: 13px; }
.career-field-grid li::before { content: ""; position: absolute; left: 0; top: 15px; width: 6px; height: 6px; background: var(--lime); }
.career-field-grid article.career-entry { background: #f2f7ef; }

.career-profile {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  width: 100%;
  background: #173c68;
  color: #fff;
  overflow: hidden;
}
.career-profile-copy { padding: 90px 70px 90px max(44px, calc((100vw - 1180px) / 2)); }
.career-profile-copy h2 { max-width: 540px; margin: 12px 0 24px; font-size: clamp(36px, 4vw, 58px); line-height: 1.04; }
.career-profile-copy > p:last-child { max-width: 600px; color: rgba(255,255,255,.72); line-height: 1.75; }
.career-profile-list { padding: 70px max(44px, calc((100vw - 1180px) / 2)) 70px 65px; background: rgba(255,255,255,.06); }
.career-profile-list div { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.career-profile-list span { color: var(--lime); font-weight: 800; }
.career-profile-list p { margin: 0; font-size: 19px; line-height: 1.5; }

.career-openings {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.career-openings h2 { max-width: 470px; font-size: clamp(36px, 4vw, 58px); line-height: 1.05; }
.opening-card { padding: 45px; border: 1px solid #d9dfe3; background: #fff; box-shadow: 0 18px 50px rgba(15,46,79,.08); }
.opening-status { display: inline-block; margin-bottom: 24px; padding: 7px 12px; background: rgba(96,174,68,.12); color: #43852d; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.opening-card h3 { margin-bottom: 16px; font-size: 29px; }
.opening-card p { margin-bottom: 28px; color: var(--muted); line-height: 1.75; }
.opening-card a { color: var(--blue); font-weight: 800; text-decoration: none; }
.career-contact-copy { max-width: 690px; margin: 26px 0 0; color: #5c6870; font-size: 17px; line-height: 1.7; }
.career-contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.career-contact-actions .button { color: #fff; }
.career-phone-link { color: var(--navy); font-size: 18px; font-weight: 800; }
.career-contact-actions p { margin: 0; color: #65717a; font-size: 14px; }

.legal-hero {
  padding: 95px 8vw 85px;
  background: linear-gradient(135deg, #eef3f5 0%, #fff 72%);
  border-bottom: 1px solid var(--line);
}
.legal-hero > div { max-width: 1180px; margin: 0 auto; }
.legal-hero .breadcrumbs { color: #6b767e; margin-bottom: 55px; }
.legal-hero .breadcrumbs a:hover { color: var(--green); }
.legal-hero h1 { margin: 0; color: var(--navy); font-size: clamp(54px, 7vw, 92px); line-height: 1; letter-spacing: -.055em; }
.legal-hero > div > p:last-child { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.legal-content { display: grid; grid-template-columns: .7fr 1.3fr; gap: 10vw; align-items: start; }
.legal-sidebar { position: sticky; top: 35px; padding: 34px; border-left: 4px solid var(--green); background: #f7f9fa; }
.legal-sidebar p:not(.kicker) { color: var(--muted); line-height: 1.75; }
.legal-sidebar a { display: block; margin-top: 10px; color: var(--navy); font-weight: 700; }
.legal-sections { max-width: 760px; }
.legal-sections section { padding: 0 0 42px; margin: 0 0 42px; border-bottom: 1px solid var(--line); }
.legal-sections h2 { margin-bottom: 20px; color: var(--navy); font-size: clamp(28px, 3vw, 38px); letter-spacing: -.03em; }
.legal-sections h3 { margin: 34px 0 12px; color: var(--navy); font-size: 22px; letter-spacing: -.015em; }
.legal-sections h4 { margin: 24px 0 8px; color: var(--ink); font-size: 16px; }
.legal-sections p { color: var(--muted); line-height: 1.75; }
.legal-sections ul { margin: 14px 0 24px; padding-left: 22px; color: var(--muted); line-height: 1.7; }
.legal-sections li { margin-bottom: 9px; }
.legal-emphasis { font-size: 13px; font-weight: 700; }
.legal-sections a { color: var(--green); font-weight: 700; }
.legal-note { padding: 22px 25px; background: #f7f9fa; font-size: 13px; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 0;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(17,42,61,.22);
  color: #fff;
  font: 700 12px/1 Arial, Helvetica, sans-serif;
  letter-spacing: .02em;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s, background-color .22s ease, border-color .22s ease;
}
.back-to-top > span:first-child { font-size: 22px; line-height: 1; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--green); background: var(--green); transform: translateY(-2px); }
.back-to-top:focus-visible { outline: 3px solid rgba(105,172,69,.42); outline-offset: 3px; }

@media (max-width: 900px) {
  .career-benefit-grid { grid-template-columns: 1fr 1fr; }
  .career-field-grid { grid-template-columns: 1fr 1fr; }
  .career-profile, .career-openings { grid-template-columns: 1fr; }
  .career-profile-copy, .career-profile-list { padding: 58px 24px; }
  .career-openings { gap: 38px; }
}
@media (max-width: 620px) {
  .career-benefit-grid { grid-template-columns: 1fr; }
  .career-field-grid { grid-template-columns: 1fr; }
  .career-field-grid article { min-height: 0; }
  .opening-card { padding: 30px 24px; }
  .back-to-top { right: 16px; bottom: 16px; width: 48px; height: 48px; min-height: 48px; }
}
.subhero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.52) 52%, rgba(0,0,0,.08));
}
.abouthero > img { object-position: center 48%; }
.abouthero .subhero-shade {
  background: linear-gradient(90deg, rgba(8,29,49,.88) 0%, rgba(8,29,49,.66) 50%, rgba(8,29,49,.16) 100%);
}
.subhero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 86vw);
  margin: 0 0 80px 8vw;
}
.breadcrumbs {
  display: flex;
  gap: 9px;
  margin: 0 0 42px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
}
.breadcrumbs a:hover { color: white; }
.subhero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(49px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -.052em;
}
.subhero-content > p:not(.kicker):not(.breadcrumbs) {
  max-width: 730px;
  margin: 28px 0 34px;
  color: rgba(255,255,255,.82);
  font-size: 19px;
  line-height: 1.6;
}
.subhero.abouthero > img { object-position: center 62%; }
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 8vw;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(23,60,104,.08);
  transform: translateY(-42px);
  position: relative;
  z-index: 3;
}
.about-facts div { padding: 30px 38px; border-right: 1px solid var(--line); }
.about-facts div:last-child { border-right: 0; }
.about-facts strong { display: block; color: var(--navy); font-size: clamp(28px, 3vw, 42px); letter-spacing: -.04em; }
.about-facts span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.about-principles { background: var(--mist); }
.about-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 66px;
  background: var(--line);
  border: 1px solid var(--line);
}
.about-principle-grid article { padding: 42px 36px 44px; background: white; }
.about-principle-grid span { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.about-principle-grid h3 { margin: 54px 0 16px; color: var(--navy); font-size: 27px; letter-spacing: -.025em; }
.about-principle-grid p { margin: 0; color: var(--muted); line-height: 1.7; }
.about-competencies {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  align-items: start;
}
.about-competency-list { border-top: 1px solid var(--line); }
.about-competency-list a {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 25px 6px;
  border-bottom: 1px solid var(--line);
  transition: color .22s ease, padding .22s ease, background-color .22s ease;
}
.about-competency-list a:hover { padding-left: 16px; background: var(--mist); color: var(--green); }
.about-competency-list span { color: var(--green); font-size: 12px; font-weight: 800; }
.about-competency-list strong { font-size: 23px; }
.about-competency-list em { font-size: 22px; font-style: normal; }
.about-location {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 650px;
  background: var(--navy);
  color: white;
}
.about-location-image { min-height: 520px; overflow: hidden; }
.about-location-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 60%; }
.about-location-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px 8vw 80px 6vw; }
.about-location-copy h2 { margin: 0 0 24px; font-size: clamp(38px, 4vw, 62px); line-height: 1.03; letter-spacing: -.045em; }
.about-location-copy > p:not(.kicker) { margin: 0; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.7; }
.about-location-copy address { margin: 30px 0; color: rgba(255,255,255,.9); font-style: normal; line-height: 1.65; }
.about-location-copy .button { align-self: flex-start; }
@media (max-width: 900px) {
  .about-principle-grid { grid-template-columns: 1fr; }
  .about-principle-grid h3 { margin-top: 28px; }
  .about-competencies, .about-location { grid-template-columns: 1fr; }
  .about-location-copy { padding: 68px 7vw; }
}
@media (max-width: 620px) {
  .about-facts { grid-template-columns: 1fr; margin: 0 22px; transform: translateY(-26px); }
  .about-facts div { padding: 22px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-facts div:last-child { border-bottom: 0; }
  .about-principle-grid article { padding: 32px 24px; }
  .about-competency-list strong { font-size: 19px; }
  .about-location { min-height: 0; }
  .about-location-image { min-height: 360px; }
  .about-location-copy { padding: 54px 24px; }
}
.answer-block {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9vw;
}
.answer-block .lead {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.65;
}
.answer-block > div:last-child > p:last-child {
  color: #65717a;
  line-height: 1.75;
}
.automation-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 8vw 110px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.automation-benefits div { padding: 30px 24px; border-right: 1px solid var(--line); }
.automation-benefits div:last-child { border: 0; }
.automation-benefits strong { display: block; color: var(--navy); font-size: 20px; margin-bottom: 7px; }
.automation-benefits span { color: #6a757d; font-size: 13px; line-height: 1.5; }
.engineering-focus { background: #f5f7f7; }
.engineering-focus-heading { max-width: 880px; }
.engineering-focus-heading > p:last-child,
.engineering-platforms-heading > p:last-child { max-width: 760px; margin: 26px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.engineering-focus-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; margin-top: 68px; background: var(--line); border: 1px solid var(--line); }
.engineering-focus-grid article { position: relative; padding: 52px 48px 50px; background: white; overflow: hidden; }
.engineering-focus-number { position: absolute; top: 24px; right: 28px; color: #dce3e7; font-size: 64px; font-weight: 800; line-height: 1; }
.engineering-focus-grid h3 { position: relative; max-width: 580px; margin: 18px 0 22px; color: var(--navy); font-size: clamp(29px, 3vw, 42px); line-height: 1.08; letter-spacing: -.035em; }
.engineering-focus-grid article > p:not(.kicker) { min-height: 112px; margin: 0; color: var(--muted); line-height: 1.72; }
.engineering-focus-grid ul,
.engineering-platform-grid ul { list-style: none; padding: 0; margin: 30px 0 0; }
.engineering-focus-grid li,
.engineering-platform-grid li { position: relative; padding: 10px 0 10px 19px; border-top: 1px solid var(--line); color: #4f5c65; font-size: 13px; line-height: 1.45; }
.engineering-focus-grid li::before,
.engineering-platform-grid li::before { content: ""; position: absolute; left: 0; top: 16px; width: 6px; height: 6px; background: var(--lime); }
.automation-modules { background: var(--mist); }
.module-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: end; }
.module-heading .kicker { grid-column: 1 / -1; margin-bottom: -30px; }
.module-heading > p:last-child { color: #647079; line-height: 1.7; font-size: 17px; }
.module-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.module-grid article { padding: 38px 34px 40px; background: white; }
.module-number { font-size: 11px; font-weight: 800; letter-spacing: .12em; color: var(--blue); }
.module-grid h3 { margin: 38px 0 13px; font-size: 25px; letter-spacing: -.02em; }
.module-grid p { min-height: 100px; color: #65717a; line-height: 1.6; }
.module-grid ul, .feature-copy ul { list-style: none; padding: 0; margin: 25px 0 0; }
.module-grid li, .feature-copy li { position: relative; padding: 10px 0 10px 18px; border-top: 1px solid var(--line); font-size: 13px; }
.module-grid li::before, .feature-copy li::before { content: ""; position: absolute; left: 0; top: 16px; width: 6px; height: 6px; background: var(--lime); }
.engineering-platforms { background: white; }
.engineering-platforms-heading { max-width: 900px; }
.engineering-platform-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 66px; background: var(--line); border: 1px solid var(--line); }
.engineering-platform-grid article { min-height: 440px; padding: 42px 36px; background: #f8fafb; }
.engineering-platform-grid article > span { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.engineering-platform-grid h3 { margin: 48px 0 16px; color: var(--navy); font-size: 34px; letter-spacing: -.035em; }
.engineering-platform-grid article > p { min-height: 88px; margin: 0; color: var(--muted); line-height: 1.7; }
.engineering-proof { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; padding: 100px 8vw; align-items: center; background: var(--navy); color: white; }
.engineering-proof-copy h2 { max-width: 660px; font-size: clamp(40px, 4.8vw, 66px); }
.engineering-proof-copy > p:last-child { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.75; }
.engineering-proof-facts { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.18); }
.engineering-proof-facts div { min-height: 180px; padding: 34px 26px; display: flex; flex-direction: column; justify-content: flex-end; border-right: 1px solid rgba(255,255,255,.18); }
.engineering-proof-facts div:last-child { border-right: 0; }
.engineering-proof-facts strong { color: #a8d48e; font-size: clamp(31px, 3vw, 46px); line-height: 1; letter-spacing: -.045em; }
.engineering-proof-facts span { margin-top: 12px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.45; text-transform: uppercase; letter-spacing: .07em; }
.automation-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; background: var(--navy); color: white; }
.feature-image { position: relative; min-height: 540px; }
.feature-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-copy { padding: 90px 8vw 90px 7vw; align-self: center; }
.feature-copy h2 { font-size: clamp(38px, 4.3vw, 60px); }
.feature-copy > p:not(.kicker) { color: rgba(255,255,255,.72); line-height: 1.75; margin: 28px 0; }
.feature-copy li { border-color: rgba(255,255,255,.16); }
.industries > h2 { max-width: 950px; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); margin-top: 60px; }
.industry-grid article { background: white; padding: 34px 28px 38px; }
.industry-grid span { color: var(--blue); font-size: 11px; font-weight: 800; }
.industry-grid h3 { min-height: 58px; margin: 35px 0 14px; font-size: 23px; }
.industry-grid p { color: #65717a; line-height: 1.6; margin: 0; }
.project-flow { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; background: #f7f9fa; }
.project-flow ol { list-style: none; margin: 0; padding: 0; }
.project-flow li { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.project-flow li > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.project-flow h3 { margin: 0 0 7px; font-size: 21px; }
.project-flow li p { margin: 0; color: #65717a; line-height: 1.55; }
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 9vw; }
.faq > *, .faq-list, .faq-list details, .faq-list summary { min-width: 0; }
.faq-heading h2 {
  font-size: clamp(34px, 3.3vw, 50px);
  line-height: 1.05;
  overflow-wrap: break-word;
  hyphens: auto;
}
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; display: flex; justify-content: space-between; gap: 24px; padding: 25px 0; font-size: 18px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span:last-child { color: var(--green); font-size: 24px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary > span:last-child { transform: rotate(45deg); }
.faq-list details p { margin: -5px 35px 25px 0; color: #65717a; line-height: 1.7; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 180px 1fr auto; gap: 20px; padding: 0 3vw; }
  nav { gap: 15px; }
  nav a { font-size: 11px; }
  .header-cta { padding: 12px; }
  .hero-facts { right: 0; }
  .hero-facts div { min-width: 125px; padding: 17px 19px; }
}
@media (max-width: 820px) {
  .site-header { height: 76px; grid-template-columns: 1fr auto auto; gap: 8px; }
  .brand img { width: 145px; }
  .menu-toggle { display: inline-flex; }
  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 22px;
    background: rgba(255,255,255,.99);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 38px rgba(15,46,79,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .site-header.menu-open nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-header nav a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
  }
  .site-header nav a:last-child { border-bottom: 0; }
  .site-header nav a::after { display: none; }
  html.nav-open { overflow: hidden; }
  .header-cta { font-size: 0; }
  .header-cta::before { content: "Kontakt"; font-size: 12px; }
  .hero {
    min-height: 0;
    display: block;
    background: var(--navy);
  }
  .hero > img { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 1671 / 941; object-fit: cover; object-position: center; }
  .hero-overlay { display: none; }
  .hero-content {
    margin: 0 7vw;
    padding: 48px 0 46px;
  }
  .hero h1 { font-size: clamp(46px, 9vw, 60px); }
  .hero-copy { margin: 22px 0 26px; font-size: 17px; }
  .hero-facts {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    overflow: visible;
    background: white;
  }
  .hero-facts div { flex: 1; min-width: 110px; padding: 14px 16px; }
  .hero-facts strong { font-size: 21px; }
  .subhero { min-height: 560px; }
  .subhero-content { margin-bottom: 46px; }
  .subhero.abouthero { display: block; min-height: 0; background: var(--navy); }
  .abouthero > img { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 1671 / 941; object-fit: cover; object-position: center; }
  .abouthero .subhero-shade { display: none; }
  .abouthero .subhero-content { width: auto; margin: 0; padding: 48px 7vw 52px; }
  .subhero.careerhero { min-height: 650px; }
  .subhero.careerhero > img { object-position: 63% center; }
  .careerhero .subhero-shade {
    background: linear-gradient(0deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.06) 62%, rgba(0,0,0,.01) 100%);
  }
  .careerhero .careerhero-card {
    width: auto;
    margin: 0 22px 30px;
    padding: 36px 30px;
  }
  .careerhero .careerhero-card h1 { font-size: clamp(43px, 12vw, 62px); }
  .careerhero .careerhero-card > p:not(.kicker) { font-size: 16px; }
  .intro, .why-ancotek, .contact { grid-template-columns: 1fr; }
  .why-ancotek { gap: 52px; }
  .contact-page-hero, .team-intro, .location-section { grid-template-columns: 1fr; }
  .contact-page-hero { display: block; min-height: 0; padding: 0 0 46px; }
  .contact-hero-image { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 1671 / 941; object-position: center; }
  .contact-page-hero::before { display: none; }
  .contact-page-hero > div { padding: 48px 7vw 0; }
  .contact-page-hero aside { margin: 34px 7vw 0; }
  .contact-person-grid { grid-template-columns: 1fr 1fr; }
  .answer-block, .module-heading, .project-flow, .faq { grid-template-columns: 1fr; }
  .legal-content { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .automation-benefits { grid-template-columns: repeat(2, 1fr); }
  .automation-benefits div:nth-child(2) { border-right: 0; }
  .module-heading .kicker { grid-column: auto; margin-bottom: 0; }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .engineering-platform-grid { grid-template-columns: 1fr; }
  .engineering-platform-grid article { min-height: 0; }
  .engineering-proof { grid-template-columns: 1fr; }
  .automation-feature { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .intro { gap: 38px; }
  .services { grid-template-columns: 1fr; }
  .service-card { height: 580px; }
  .process-grid { grid-template-columns: 1fr; }
  .career {
    min-height: 780px;
    align-items: flex-end;
    padding: 340px 22px 60px;
    background-position: 63% center;
  }
  .career-card { width: 100%; padding: 44px 30px; }
  .career-pattern { display: none; }
  .contact { align-items: start; }
  .circle-link { margin-top: 10px; }
  footer { grid-template-columns: 1fr; }
  footer > div { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .site-header { padding: 0 20px; }
  .hero { min-height: 0; }
  .hero-content { margin: 0 22px; padding: 38px 0 42px; }
  .hero h1 { font-size: 42px; }
  .hero-copy { font-size: 15px; line-height: 1.5; }
  .hero > img { object-position: center; }
  .hero-facts div { min-width: 0; padding: 12px 8px; }
  .hero-facts strong { font-size: 18px; }
  .hero-facts span { font-size: 9px; }
  .subhero { min-height: 500px; }
  .subhero-content { margin: 0 22px 38px; width: auto; }
  .abouthero .subhero-content { margin: 0; padding: 42px 22px 46px; }
  .subhero h1 { font-size: 40px; }
  .legal-hero { padding: 50px 22px 44px; }
  .legal-hero h1 { font-size: 44px; }
  .subhero.careerhero { min-height: 620px; }
  .subhero.careerhero > img { object-position: 63% center; }
  .careerhero .careerhero-card { padding: 30px 24px; }
  .careerhero .careerhero-card h1 { font-size: 40px; }
  .careerhero-facts { gap: 8px 16px; }
  .careerhero-facts span:not(:first-child)::before { display: none; }
  .section, .why-ancotek, .contact { padding: 80px 22px; }
  .why-ancotek-grid { grid-template-columns: 1fr; }
  .why-ancotek-grid article { min-height: auto; padding: 24px 0 26px; }
  .why-ancotek-grid article:nth-child(even) { padding-left: 0; border-left: 0; }
  .why-ancotek-grid span { margin-bottom: 13px; }
  .automation-benefits { margin: 0 22px 80px; grid-template-columns: 1fr; }
  .automation-benefits div { border-right: 0; border-bottom: 1px solid var(--line); }
  .module-grid, .industry-grid { grid-template-columns: 1fr; }
  .engineering-focus-grid { grid-template-columns: 1fr; }
  .engineering-focus-grid article { padding: 42px 26px; }
  .engineering-focus-grid article > p:not(.kicker) { min-height: 0; }
  .engineering-proof { padding: 75px 22px; }
  .engineering-proof-facts { grid-template-columns: 1fr; }
  .engineering-proof-facts div { min-height: 130px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .engineering-proof-facts div:last-child { border-bottom: 0; }
  .contact-page-hero { padding-bottom: 46px; }
  .contact-page-hero > div { padding: 42px 22px 0; }
  .contact-page-hero aside { margin: 30px 22px 0; }
  .contact-page-hero h1 { font-size: 42px; }
  .contact-person-grid { grid-template-columns: 1fr; }
  .footer-memberships { align-items: flex-start; flex-direction: column; }
  .footer-membership-logos { width: 100%; justify-content: flex-start; }
  .footer-membership-link { width: calc(50% - 9px); }
  .map-dialog { width: calc(100vw - 20px); }
  .person-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    grid-template-columns: none;
  }
  .person-dialog[open] { display: block; }
  .person-dialog-text-only .person-dialog-content { padding: 58px 24px 30px; }
  .person-dialog-media {
    width: auto;
    min-width: 100%;
    height: clamp(210px, 72vw, 320px);
    aspect-ratio: auto;
    max-height: none;
  }
  .person-dialog-content { padding: 34px 24px 30px; }
  .person-dialog-content h2 { margin-bottom: 28px; font-size: 38px; }
  .map-dialog-head { padding: 24px 20px 20px; }
  .map-frame { min-height: 430px; }
  .map-dialog-foot { padding: 18px 20px; align-items: flex-start; flex-direction: column; gap: 10px; }
  .module-grid p { min-height: auto; }
  .feature-copy { padding: 70px 22px; }
  .service-content { left: 24px; right: 24px; bottom: 28px; }
  .service-number { left: 24px; }
}

/* Statische Upload-Version: Bilder liegen unter /public/images/. */
.career {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.02) 50%, rgba(0,0,0,0) 100%),
    url("public/images/karriere-mitarbeiter-schaltschrank.webp");
}
