:root {
  color-scheme: light;
  --color-ink: #1f2527;
  --color-ink-soft: #566064;
  --color-steel: #343a46;
  --color-line: #d2d5df;
  --color-paper: #f5f5f2;
  --color-warm: #30358f;
  --color-warm-dark: #22266a;
  --color-white: #fbfbff;
  --shadow-soft: 0 24px 70px rgba(34, 38, 106, 0.13);
  --container: min(100% - 32px, 1280px);
  --hero-edge: 24px;
  --radius: 6px;
}

@keyframes innovationTrace {
  0%,
  100% {
    opacity: 0.32;
    transform: translate3d(0, 0, 0) scaleX(0.22);
  }

  44% {
    opacity: 0.88;
    transform: translate3d(0, 0, 0) scaleX(1);
  }

  68% {
    opacity: 0.48;
    transform: translate3d(24px, 0, 0) scaleX(0.62);
  }
}

@keyframes innovationFrame {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    opacity: 0.58;
    transform: translate3d(-12px, 8px, 0) rotate(3deg);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes materialSparkBurst {
  0% {
    opacity: 0;
    transform: translate3d(24px, 24px, 0) rotate(-12deg) scale(0.58);
  }

  18% {
    opacity: 1;
  }

  62% {
    opacity: 0.82;
    transform: translate3d(-10px, -18px, 0) rotate(-12deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(-28px, -38px, 0) rotate(-12deg) scale(1.08);
  }
}

@keyframes processEnergySweep {
  0% {
    opacity: 0;
    transform: translate3d(-120%, 0, 0) skewX(-18deg);
  }

  34% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: translate3d(180%, 0, 0) skewX(-18deg);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 14px 0;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding: 8px 0;
  background: rgba(247, 243, 236, 0.96);
  box-shadow: 0 12px 40px rgba(31, 37, 39, 0.1);
}

.site-header__inner {
  width: calc(100% - (var(--hero-edge) * 2));
  margin: 0 var(--hero-edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 5px 8px 5px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 140px;
  height: auto;
}

.site-header__quick-actions {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: rgba(31, 37, 39, 0.82);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
}

.site-nav a,
.site-nav__cta {
  padding: 10px 14px;
  color: rgba(255, 250, 242, 0.86);
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  color: var(--color-white);
  background: rgba(255, 250, 242, 0.12);
  outline: none;
}

.site-nav a:focus-visible,
.site-nav__cta:focus-visible,
.brand-mark:focus-visible,
.nav-toggle:focus-visible,
.button:focus-visible,
.quickstart-card:focus-visible,
.consent-row a:focus-visible {
  box-shadow: 0 0 0 3px rgba(205, 210, 255, 0.7), 0 0 0 6px rgba(48, 53, 143, 0.22);
  outline: none;
}

.site-nav a:active,
.site-nav__cta:active,
.button:active,
.nav-toggle:active {
  transform: translateY(1px);
}

.site-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 8px;
  margin-left: 4px;
  border-left: 1px solid rgba(255, 250, 242, 0.2);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-height: 42px;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__cta--phone {
  color: var(--color-white);
  background: rgba(48, 53, 143, 0.76);
}

.site-nav__cta--email {
  color: var(--color-white);
  background: rgba(45, 91, 168, 0.84);
}

.site-nav__cta--whatsapp {
  color: #f7fff8;
  background: rgba(38, 128, 76, 0.88);
}

.site-nav__icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.site-nav__icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: var(--radius);
  color: var(--color-white);
  background: var(--color-ink);
  cursor: pointer;
}

.nav-toggle span:not(.visually-hidden) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button--primary {
  color: var(--color-white);
  background: var(--color-warm);
  box-shadow: 0 16px 36px rgba(48, 53, 143, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-warm-dark);
  outline: none;
}

.button--ghost {
  color: var(--color-white);
  border-color: rgba(255, 250, 242, 0.42);
  background: rgba(255, 250, 242, 0.08);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 250, 242, 0.16);
  outline: none;
}

.button--ghost-dark {
  color: var(--color-ink);
  border-color: rgba(31, 37, 39, 0.24);
  background: rgba(251, 251, 255, 0.66);
}

.button--ghost-dark:hover,
.button--ghost-dark:focus-visible {
  color: var(--color-white);
  background: var(--color-ink);
}

.button--wide {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-ink);
}

.hero__image,
.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  z-index: 0;
}

.hero__video {
  z-index: 1;
  filter: saturate(0.92) contrast(1.02) brightness(0.82);
}

.hero__shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(18, 22, 24, 0.92) 0%, rgba(18, 22, 24, 0.7) 52%, rgba(18, 22, 24, 0.4) 100%),
    linear-gradient(0deg, rgba(18, 22, 24, 0.82) 0%, rgba(18, 22, 24, 0.16) 58%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: calc(100% - (var(--hero-edge) * 2));
  min-height: 76svh;
  margin: 0 var(--hero-edge);
  display: grid;
  align-content: end;
  gap: clamp(24px, 4.5vw, 54px);
  padding: 120px 0 28px;
}

.hero__content {
  max-width: 780px;
}

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

.eyebrow--light {
  color: #cdd2ff;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 7.6rem);
}

.hero__content p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 250, 242, 0.22);
  border: 1px solid rgba(255, 250, 242, 0.22);
}

.hero__facts li {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: rgba(255, 250, 242, 0.9);
  background: rgba(31, 37, 39, 0.72);
  font-weight: 700;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5.8vw, 76px) 0 clamp(52px, 6.5vw, 88px);
}

.section__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.quickstart {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding: clamp(28px, 4.5vw, 54px) 0;
  background:
    linear-gradient(135deg, rgba(48, 53, 143, 0.08), transparent 42%),
    var(--color-white);
  border-bottom: 1px solid rgba(31, 37, 39, 0.08);
}

.quickstart__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.24fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.quickstart__copy h2,
.quickstart__copy p {
  margin: 0;
}

.quickstart__copy h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4.1vw, 4.2rem);
  line-height: 0.98;
  text-wrap: balance;
}

.quickstart__copy p:not(.eyebrow) {
  max-width: 56ch;
  margin-top: 14px;
  color: var(--color-ink-soft);
}

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

.quickstart-card {
  min-width: 0;
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 14px;
  color: var(--color-ink);
  text-align: left;
  background: #f3f4f8;
  border: 1px solid rgba(31, 37, 39, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.quickstart-card span {
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.1;
}

.quickstart-card small {
  color: var(--color-ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.quickstart-card:hover,
.quickstart-card:focus-visible,
.quickstart-card.is-selected {
  color: var(--color-white);
  background: var(--color-warm);
  border-color: rgba(48, 53, 143, 0.5);
  box-shadow: 0 14px 34px rgba(34, 38, 106, 0.18);
  outline: none;
  transform: translateY(-2px);
}

.quickstart-card:hover small,
.quickstart-card:focus-visible small,
.quickstart-card.is-selected small {
  color: rgba(251, 251, 255, 0.78);
}

.quickstart__actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section--muted {
  background: #eceef5;
}

.section--services {
  color: var(--color-white);
  background-color: var(--color-ink);
  background-image:
    linear-gradient(90deg, rgba(18, 22, 24, 0.88) 0%, rgba(18, 22, 24, 0.72) 52%, rgba(18, 22, 24, 0.7) 100%),
    linear-gradient(0deg, rgba(31, 37, 39, 0.28), rgba(18, 22, 24, 0.1)),
    var(--services-bg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.section--services .eyebrow,
.section--services .section-heading p:not(.eyebrow) {
  color: rgba(251, 251, 255, 0.78);
}

.section--services .section-heading h2 {
  color: var(--color-white);
}

.section--muted.section--services .section-heading::after {
  background: linear-gradient(90deg, rgba(205, 210, 255, 0), rgba(205, 210, 255, 0.9), rgba(255, 177, 74, 0));
}

.section--compact {
  padding-top: clamp(38px, 5vw, 68px);
}

.section--materials {
  background:
    linear-gradient(135deg, rgba(48, 53, 143, 0.05), rgba(236, 238, 245, 0.78) 46%, rgba(251, 251, 255, 0.72)),
    #eef1f3;
}

.section--materials::before {
  border-color: rgba(48, 53, 143, 0.24);
}

.section--materials .material-list {
  background: rgba(48, 53, 143, 0.16);
  border-color: rgba(48, 53, 143, 0.18);
  box-shadow: 0 24px 64px rgba(34, 38, 106, 0.08);
}

.section--materials .material-list article {
  background: rgba(251, 251, 255, 0.72);
}

.section--dark {
  color: var(--color-white);
  background: var(--color-ink);
}

.section--muted,
.references,
.section--compact,
.trust-section {
  isolation: isolate;
}

.references {
  color: var(--color-white);
  background-color: #15191b;
  background-image:
    linear-gradient(180deg, rgba(18, 22, 24, 0.72) 0%, rgba(18, 22, 24, 0.58) 46%, rgba(18, 22, 24, 0.78) 100%),
    linear-gradient(90deg, rgba(18, 22, 24, 0.32) 0%, rgba(18, 22, 24, 0.12) 48%, rgba(18, 22, 24, 0.38) 100%),
    url("../images/referenzen-montage-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.section--muted::before,
.references::before,
.section--compact::before,
.trust-section::before {
  position: absolute;
  top: clamp(20px, 4vw, 44px);
  right: max(16px, calc((100vw - 1280px) / 2));
  width: min(160px, 34vw);
  height: min(160px, 34vw);
  content: "";
  border-top: 1px solid rgba(48, 53, 143, 0.18);
  border-right: 1px solid rgba(48, 53, 143, 0.18);
  border-radius: var(--radius);
  opacity: 0.52;
  pointer-events: none;
  animation: none;
}

.references::before {
  display: none;
}

.section--services::before {
  opacity: 0.32;
  animation: innovationFrame 16s ease-in-out infinite;
}

.section--dark .eyebrow,
.section--dark .section-heading p {
  color: #cdd2ff;
}

.references .eyebrow,
.references .section-heading p:not(.eyebrow) {
  color: rgba(251, 251, 255, 0.8);
}

.section--dark .section-heading h2 {
  color: var(--color-white);
}

.references .section-heading h2 {
  color: var(--color-white);
}

.section-heading {
  position: relative;
  max-width: 760px;
}

.section--muted .section-heading::after,
.references .section-heading::after,
.section--compact .section-heading::after,
.trust-section .section-heading::after {
  display: block;
  width: min(220px, 55vw);
  height: 2px;
  margin-top: 24px;
  content: "";
  background: linear-gradient(90deg, rgba(48, 53, 143, 0), rgba(48, 53, 143, 0.82), rgba(48, 53, 143, 0));
  border-radius: 999px;
  transform-origin: left center;
  opacity: 0.72;
  animation: none;
}

.references .section-heading::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(251, 251, 255, 0.58), rgba(255, 255, 255, 0));
}

.section--services .section-heading::after {
  animation: innovationTrace 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 5vw, 5rem);
  color: var(--color-ink);
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  max-width: 68ch;
  margin: 18px 0 0;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: center;
}

.principle-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  background: var(--color-line);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.principle-list li {
  padding: 13px 0;
  background: var(--color-paper);
  font-weight: 700;
}

.media-stack {
  position: relative;
  display: grid;
  gap: 14px;
}

.media-stack__main,
.media-stack__portrait {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.media-stack__main {
  aspect-ratio: 4 / 3;
}

.media-stack__portrait {
  width: min(52%, 260px);
  aspect-ratio: 4 / 5;
  justify-self: end;
  margin-top: -28%;
  border: 8px solid var(--color-paper);
}

.team-block {
  margin-top: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.team-block__intro h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.team-block__intro p:not(.eyebrow) {
  max-width: 38ch;
  margin: 18px 0 0;
  color: var(--color-ink-soft);
  font-size: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.team-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 6px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f6ff 100%);
  border: 1px solid rgba(48, 53, 143, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(34, 38, 106, 0.09);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.team-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(48, 53, 143, 0.16) 0%, transparent 46%);
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.team-card:hover,
.team-card:focus-within {
  border-color: rgba(48, 53, 143, 0.34);
  box-shadow: 0 24px 58px rgba(34, 38, 106, 0.16);
  transform: translateY(-4px);
}

.team-card:hover::before,
.team-card:focus-within::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.team-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #ddd4c8;
}

.team-card__media img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1);
  transform-origin: center top;
  transition: transform 540ms ease, filter 540ms ease;
}

.team-card:hover img,
.team-card:focus-within img {
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.025);
}

.team-card__body {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 12px 7px 5px;
}

.team-card h4,
.team-card p {
  margin: 0;
}

.team-card h4 {
  font-size: 1rem;
  line-height: 1.2;
}

.team-card__role {
  width: fit-content;
  padding: 5px 8px;
  color: var(--color-warm-dark);
  background: rgba(48, 53, 143, 0.1);
  border-left: 2px solid var(--color-warm);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
}

.team-card__mail {
  max-width: 100%;
  margin-top: 4px;
  color: var(--color-ink-soft);
  font-size: clamp(0.72rem, 0.8vw, 0.86rem);
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.team-card[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.982);
  transition-delay: calc(var(--team-index, 0) * 70ms);
}

.team-card[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.service-item {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  overflow: hidden;
  padding: 0;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid rgba(31, 37, 39, 0.08);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.service-item:nth-child(1),
.service-item:nth-child(2) {
  grid-column: span 3;
}

.service-item:nth-child(n + 3) {
  grid-column: span 2;
}

.section--services .service-item {
  border-color: rgba(205, 210, 255, 0.2);
  box-shadow: 0 16px 36px rgba(4, 8, 18, 0.18);
}

.service-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #d6d0c6;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.service-item:hover,
.service-item:focus-within {
  border-color: rgba(48, 53, 143, 0.28);
  box-shadow: 0 18px 42px rgba(34, 38, 106, 0.1);
  transform: translateY(-1px);
}

.service-item:hover img,
.service-item:focus-within img {
  filter: contrast(1.02) saturate(1.02);
  transform: scale(1.025);
}

.service-item div {
  padding: 18px;
  background: var(--color-white);
  border-top: 1px solid rgba(31, 37, 39, 0.08);
}

.service-item h3,
.service-item p {
  margin: 0;
}

.service-item h3 {
  color: #11191c;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: none;
}

.service-item p {
  margin-top: 7px;
  color: #4c565a;
  font-size: 0.92rem;
}

.section--services .service-item div {
  background: #fbfbff;
}

.service-inquiry {
  max-width: 980px;
  margin: clamp(24px, 4vw, 42px) 0 0;
  padding: clamp(20px, 3vw, 30px);
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(251, 251, 255, 0.12), rgba(251, 251, 255, 0.04)),
    rgba(18, 22, 24, 0.78);
  border: 1px solid rgba(251, 251, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(4, 8, 18, 0.2);
}

.service-inquiry h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  line-height: 1.02;
  text-wrap: balance;
}

.service-inquiry p:not(.eyebrow) {
  max-width: 64ch;
  margin: 14px 0 0;
  color: rgba(251, 251, 255, 0.78);
  font-size: 1.02rem;
}

.service-inquiry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.material-strip {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 20px;
  color: var(--color-white);
  background: rgba(18, 22, 24, 0.62);
  border: 1px solid rgba(251, 251, 255, 0.14);
  border-radius: var(--radius);
}

.material-strip h3,
.material-strip p {
  margin: 0;
}

.material-strip h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.05;
}

.material-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.material-strip__items span {
  padding: 8px 11px;
  color: rgba(251, 251, 255, 0.9);
  background: rgba(251, 251, 255, 0.1);
  border: 1px solid rgba(251, 251, 255, 0.16);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(122px, 9.4vw, 158px);
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 42px;
}

.reference-card {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  grid-column: span 4;
  grid-row: span 2;
  color: var(--color-white);
  border-radius: var(--radius);
  background: var(--color-ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 46px rgba(4, 8, 18, 0.28);
}

.reference-card:nth-child(1) {
  grid-column: span 5;
  grid-row: span 3;
}

.reference-card:nth-child(2) {
  grid-column: span 3;
}

.reference-card:nth-child(4),
.reference-card:nth-child(6) {
  grid-row: span 3;
}

.reference-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(1.01) contrast(1.04);
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

.reference-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(14, 18, 20, 0.54) 0%, rgba(14, 18, 20, 0.18) 62%, rgba(14, 18, 20, 0.1) 100%);
}

.reference-card:hover img {
  filter: saturate(1.03) contrast(1.06);
  transform: scale(1.018);
}

.reference-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.reference-card p,
.reference-card h3 {
  margin: 0;
}

.reference-card p,
.reference-card span {
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.reference-card h3 {
  margin: 5px 0;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1;
}

.material-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.material-list article {
  position: relative;
  isolation: isolate;
  min-height: 220px;
  overflow: hidden;
  padding: 24px;
  background: var(--color-paper);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.material-list article::before,
.material-list article::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.material-list article::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(48, 53, 143, 0.84) 0%, rgba(34, 38, 106, 0.9) 58%, rgba(31, 37, 39, 0.92) 100%);
  opacity: 0;
  transform: scaleX(0.96);
  transform-origin: left center;
  transition: opacity 260ms ease, transform 260ms ease;
}

.material-list article::after {
  display: none;
}

.material-list article:hover,
.material-list article:focus-within {
  color: var(--color-white);
  background: var(--color-warm);
  box-shadow: 0 18px 44px rgba(34, 38, 106, 0.14);
  transform: translateY(-1px);
}

.material-list article:hover::before,
.material-list article:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.material-list article:hover::after,
.material-list article:focus-within::after {
  animation: none;
}

.material-list h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 1.36rem;
  transition: color 220ms ease;
}

.material-list p {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  color: var(--color-ink-soft);
  transition: color 220ms ease;
}

.material-list article:hover h3,
.material-list article:focus-within h3,
.material-list article:hover p,
.material-list article:focus-within p {
  color: var(--color-white) !important;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: rgba(255, 250, 242, 0.18);
  border: 1px solid rgba(255, 250, 242, 0.18);
}

.process-list article {
  position: relative;
  isolation: isolate;
  min-height: 210px;
  overflow: hidden;
  padding: 20px;
  background: #252c2e;
  transition: background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.process-list article::before,
.process-list article::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.process-list article::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(48, 53, 143, 0.58) 0%, rgba(37, 44, 46, 0.94) 54%, rgba(18, 22, 24, 0.98) 100%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.process-list article::after {
  display: none;
}

.process-list article:hover,
.process-list article:focus-within {
  background: #22266a;
  box-shadow: 0 20px 48px rgba(4, 8, 18, 0.28), inset 0 0 0 1px rgba(205, 210, 255, 0.24);
  transform: translateY(-1px);
}

.process-list article:hover::before,
.process-list article:focus-within::before {
  opacity: 1;
}

.process-list article:hover::after,
.process-list article:focus-within::after {
  animation: none;
}

.process-list span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 34px;
  color: #cdd2ff;
  font-weight: 900;
  text-shadow: 0 0 0 rgba(255, 177, 74, 0);
  transition: color 220ms ease, text-shadow 220ms ease, transform 220ms ease;
}

.process-list h3,
.process-list p {
  position: relative;
  z-index: 2;
  margin: 0;
}

.process-list h3 {
  font-size: 1.5rem;
}

.process-list p {
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.74);
  transition: color 220ms ease;
}

.process-list article:hover span,
.process-list article:focus-within span {
  color: #fff7d2;
  text-shadow: 0 0 18px rgba(255, 177, 74, 0.58);
  transform: translateY(-2px);
}

.process-list article:hover p,
.process-list article:focus-within p {
  color: rgba(255, 250, 242, 0.88);
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(26px, 4.5vw, 58px);
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--color-line);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.trust-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  background: var(--color-paper);
  font-size: clamp(1.05rem, 1.7vw, 1.36rem);
  font-weight: 750;
  transition: color 220ms ease, background 220ms ease, padding 220ms ease;
}

.trust-list li::after {
  width: 32px;
  height: 32px;
  justify-self: end;
  content: "\2713";
  opacity: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #1f9d55;
  border: 1px solid rgba(13, 107, 55, 0.22);
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(31, 157, 85, 0.28);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
  transform: translateX(10px) scale(0.74);
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-list li:hover,
.trust-list li:focus-within,
.trust-list li.has-check {
  color: var(--color-warm-dark);
  background: #f7fbf8;
  padding-left: 14px;
}

.trust-list li:hover::after,
.trust-list li:focus-within::after,
.trust-list li.has-check::after {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.trust-list li.has-check::after {
  opacity: 1 !important;
}

.contact-section {
  background: #eceef5;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-address {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  color: var(--color-ink-soft);
}

.contact-address strong {
  color: var(--color-ink);
}

.contact-address a {
  width: fit-content;
  color: var(--color-ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.map-link {
  display: grid;
  gap: 10px;
  width: min(100%, 420px);
  margin-top: 28px;
  color: var(--color-ink);
  font-weight: 800;
}

.map-link__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  background: var(--color-white);
  border: 1px solid rgba(31, 37, 39, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-form__fields {
  display: grid;
  gap: 16px;
}

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

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

.contact-success img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(34, 38, 106, 0.16);
}

.contact-success p {
  margin: 0;
  color: #1f5e3a;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.08;
}

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

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-weight: 800;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--color-ink);
  background: #fffdf8;
  border: 1px solid #cfc8bc;
  border-radius: 4px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-row select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-warm) 50%), linear-gradient(135deg, var(--color-warm) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--color-warm);
  outline: none;
  box-shadow: 0 0 0 4px rgba(48, 53, 143, 0.16);
}

.consent-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-warm);
}

.consent-row a {
  color: var(--color-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-error,
.form-message {
  margin: 0;
  font-size: 0.9rem;
}

.field-error,
.form-message.is-error {
  color: #9b2d21;
}

.form-message.is-success {
  color: #2c6b45;
}

.contact-form.is-sent input,
.contact-form.is-sent textarea,
.contact-form button:disabled {
  cursor: not-allowed;
}

.contact-form.is-sent .contact-form__fields {
  display: none;
}

.contact-form.is-sent input,
.contact-form.is-sent textarea {
  opacity: 0.72;
}

.contact-form button:disabled {
  opacity: 0.72;
}

.legal-page {
  background: var(--color-paper);
  color: var(--color-ink);
}

.legal-hero {
  position: relative;
  min-height: 360px;
  padding: 150px 0 70px;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(18, 22, 24, 0.92), rgba(18, 22, 24, 0.62)),
    url("../images/firmengelaende-schlosserei-imst.jpg") center / cover;
}

.legal-hero--privacy {
  background:
    linear-gradient(90deg, rgba(18, 22, 24, 0.92), rgba(18, 22, 24, 0.58)),
    url("../images/referenzen-montage-bg.jpg") center / cover;
}

.legal-hero__inner {
  width: var(--container);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 780px;
  margin: 10px 0 18px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(251, 251, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.legal-content {
  padding: 64px 0 86px;
}

.legal-content__grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  padding-top: 6px;
}

.legal-sidebar a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--color-ink);
  border-left: 2px solid var(--color-line);
  font-weight: 750;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.legal-sidebar a:hover,
.legal-sidebar a:focus-visible {
  color: var(--color-warm);
  background: rgba(48, 53, 143, 0.06);
  border-color: var(--color-warm);
  outline: none;
  transform: translateX(3px);
}

.legal-panel {
  max-width: 880px;
  padding: clamp(28px, 5vw, 54px);
  background: rgba(251, 251, 255, 0.78);
  border: 1px solid rgba(48, 53, 143, 0.12);
  box-shadow: var(--shadow-soft);
}

.legal-panel h2 {
  margin: 34px 0 12px;
  padding-top: 2px;
  color: var(--color-ink);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.08;
  text-wrap: balance;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p {
  max-width: 68ch;
  margin: 0 0 16px;
  color: var(--color-ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-panel strong {
  color: var(--color-ink);
}

.legal-panel a {
  color: var(--color-warm);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 34px;
}

.legal-facts a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--color-white);
  background: var(--color-warm);
  border-radius: 4px;
  text-decoration: none;
}

.legal-note {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
  font-weight: 750;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 250, 242, 0.74);
  background: #171b1d;
}

.site-footer__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
}

.footer-brand {
  margin: 0 0 8px;
  color: var(--color-white);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 8px;
}

.footer-contact a,
.footer-links a {
  width: fit-content;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-contact a:focus-visible,
.footer-links a:focus-visible {
  color: var(--color-white);
  outline: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.service-item[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

.service-item[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1040px) {
  .site-nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(31, 37, 39, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
  }

  .site-header__quick-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }

  .site-header__quick-actions .site-nav__cta {
    width: 42px;
    min-height: 42px;
  }

  .site-nav__actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 10px 0 0;
    margin: 6px 0 0;
    border-top: 1px solid rgba(255, 250, 242, 0.18);
    border-left: 0;
  }

  .site-nav__cta {
    width: 48px;
    min-height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero__facts,
  .service-grid,
  .material-list,
  .process-list,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .team-block,
  .trust-layout,
  .legal-content__grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .legal-sidebar a {
    min-height: 40px;
    border: 1px solid var(--color-line);
    border-left: 2px solid var(--color-warm);
    background: rgba(251, 251, 255, 0.58);
  }

  .reference-card,
  .reference-card:nth-child(1),
  .reference-card:nth-child(6) {
    grid-column: span 6;
  }

  .reference-card:nth-child(2),
  .reference-card:nth-child(4) {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1280px);
    --hero-edge: 16px;
  }

  .site-header {
    padding: 8px 0;
  }

  .site-header__inner {
    gap: 8px;
  }

  .brand-mark img {
    width: 118px;
  }

  .site-header__quick-actions {
    gap: 5px;
  }

  .site-header__quick-actions .site-nav__cta {
    width: 38px;
    min-height: 38px;
  }

  .site-header__quick-actions .site-nav__icon {
    width: 18px;
    height: 18px;
  }

  .hero,
  .hero__inner {
    min-height: 68svh;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(18, 22, 24, 0.9) 0%, rgba(18, 22, 24, 0.58) 72%, rgba(18, 22, 24, 0.5) 100%),
      linear-gradient(90deg, rgba(18, 22, 24, 0.72) 0%, rgba(18, 22, 24, 0.22) 100%);
  }

  .hero__inner {
    gap: 18px;
    padding-top: 88px;
    padding-bottom: 18px;
  }

  .legal-hero {
    min-height: 300px;
    padding: 122px 0 52px;
  }

  .legal-content {
    padding: 38px 0 58px;
  }

  .legal-panel {
    padding: 24px 18px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.4vw, 4rem);
  }

  .hero__content p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero__actions,
  .service-inquiry__actions,
  .button {
    width: 100%;
  }

  .hero__actions {
    gap: 8px;
    margin-top: 16px;
  }

  .service-inquiry__actions {
    display: grid;
  }

  .hero__facts,
  .service-grid,
  .material-list,
  .process-list,
  .team-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .hero__facts li {
    min-height: 38px;
    padding: 10px 12px;
  }

  .media-stack__portrait {
    width: 48%;
    min-width: 160px;
    border-width: 6px;
  }

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

  .service-item img {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .section--services {
    background-attachment: scroll;
    background-position: center top;
  }

  .references {
    background-attachment: scroll;
    background-position: center top;
  }

  .reference-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .reference-card,
  .reference-card:nth-child(1),
  .reference-card:nth-child(2),
  .reference-card:nth-child(4),
  .reference-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .reference-card,
  .reference-card img {
    min-height: 0;
  }

  .reference-card,
  .reference-card:nth-child(1),
  .reference-card:nth-child(2),
  .reference-card:nth-child(4),
  .reference-card:nth-child(6) {
    aspect-ratio: 16 / 11;
  }

  .material-list article,
  .process-list article {
    min-height: auto;
  }

  .process-list span {
    margin-bottom: 24px;
  }
}

@media (max-width: 420px) {
  .brand-mark img {
    width: 104px;
  }

  .site-header__quick-actions .site-nav__cta {
    width: 34px;
    min-height: 36px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .service-item,
  .service-item img,
  .team-card,
  .team-card img,
  .reference-card img {
    transform: none !important;
    filter: none !important;
  }

  .section--muted::before,
  .references::before,
  .section--compact::before,
  .trust-section::before,
  .section--muted .section-heading::after,
  .references .section-heading::after,
  .section--compact .section-heading::after,
  .trust-section .section-heading::after {
    animation: none !important;
  }

  .material-list article:hover::after,
  .material-list article:focus-within::after,
  .process-list article:hover::after,
  .process-list article:focus-within::after {
    opacity: 0;
  }

  .hero__video {
    display: none;
  }
}
