:root {
  --paper: #fafafa;
  --white: #fff;
  --graphite: #121212;
  --ink: #17191b;
  --muted: #686d70;
  --line: #d9dcdd;
  --line-dark: #343638;
  --accent: #164b66;
  --accent-dark: #10394f;
  --mist: #f1f3f3;
}

* {
  box-sizing: border-box;
}

::selection {
  background: rgb(76, 138, 144);
  color: rgb(255, 255, 255);
}

::-moz-selection {
  background: rgb(76, 138, 144);
  color: rgb(255, 255, 255);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.shell {
  width: min(1580px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  --scroll-progress: 0%;
  position: sticky;
  z-index: 20;
  top: 0;
  height: 82px;
  background: linear-gradient(110deg, #f7fafb 0%, #e5f0f4 50%, #d8e9ef 100%);
  border-bottom: 1px solid #bed3dc;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.site-header.is-scrolled {
  background: linear-gradient(110deg, #f1f7f9 0%, #dcecf1 58%, #d0e4eb 100%);
  border-bottom-color: #afcbd6;
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.wordmark {
  color: var(--graphite);
  width: fit-content;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.045em;
}
.wordmark span {
  color: var(--accent);
}
.site-header nav {
  display: flex;
  gap: clamp(32px, 4vw, 58px);
}
.impressum {
  color: #888d8f;
  font-size: 12px;
  transition: color 0.2s ease;
  justify-self: center;
}
.impressum:hover {
  color: #c2cbcd;
}
.datenschutz-erklaerung {
  color: #888d8f;
  font-size: 12px;
  transition: color 0.2s ease;
  justify-self: center;
}
.datenschutz-erklaerung:hover {
  color: #c2cbcd;
}
.site-header nav a {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #3f4b50;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.25s ease;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--accent-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header nav a:hover,
.site-header nav a.is-active {
  color: #0e4057;
}
.site-header nav a:hover::after,
.site-header nav a.is-active::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
}
.header-cta {
  justify-self: end;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  background: var(--accent);
  border: 1px solid var(--accent-dark);
  color: white;
  font-size: 13px;
  font-weight: 600;
  background-size: 150% 100%;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.header-cta:hover {
  background: var(--accent-dark);
}
.header-cta span {
  font-size: 15px;
  font-weight: 300;
  transition: transform 0.25s ease;
}
.header-cta:hover span {
  transform: translate(2px, -2px);
}
.scroll-progress {
  position: absolute;
  right: auto;
  bottom: -1px;
  left: 0;
  width: var(--scroll-progress);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), #2d7897);
  pointer-events: none;
  transition: width 0.1s linear;
}

.scroll-progress-contact-page {
  position: absolute;
  right: auto;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), #2d7897);
  pointer-events: none;
  transition: width 0.1s linear;
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
}
.hero > .shell {
  width: min(1740px, calc(100% - 100px));
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(600px, 1.12fr);
  min-height: calc(100svh - 128px);
  gap: 280px;
  align-items: center;
  padding-block: clamp(72px, 9vh, 122px);
}
.hero-scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 70px;
  left: 49.25%;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition:
    color 0.2s ease,
    transform 0.25s ease;
}
.hero-scroll-cue:hover {
  color: var(--accent-dark);
  transform: translateX(-50%) translateY(-3px);
}
.hero-scroll-line {
  position: relative;
  width: 26px;
  height: 40px;
  overflow: hidden;
  border: 1px solid #9cb8c4;
  border-radius: 18px;
  background: rgba(22, 75, 102, 0.05);
  box-shadow: 0 6px 20px rgba(22, 75, 102, 0.08);
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: translateX(-50%) rotate(45deg);
  animation: scrollCueMove 1.7s ease-in-out infinite;
}
@keyframes scrollCueMove {
  0% {
    opacity: 0;
    transform: translate(-50%, -3px) rotate(45deg);
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 16px) rotate(45deg);
  }
}
.eyebrow,
.kicker {
  margin: 0 0 26px;
  color: var(--accent);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}
.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}
h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(58px, 6.1vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.072em;
  font-weight: 660;
  text-wrap: balance;
}
h1 strong {
  display: block;
  color: var(--accent);
  font-weight: inherit;
}
.hero-lead {
  max-width: 660px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}
.primary-button,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.primary-button:hover {
  background: var(--accent-dark);
}
.primary-button span,
.contact-button span {
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-block;
}
.primary-button:hover span,
.contact-button:hover span {
  transform: translateX(5px);
}
.quiet-link {
  color: #565b5e;
  font-size: 13px;
}
.quiet-link span {
  display: inline-block;
  margin-left: 9px;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.quiet-link:hover span {
  transform: translateY(4px);
}

.hero-copy > * {
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-copy > :nth-child(1) {
  animation-delay: 0.08s;
}
.hero-copy > :nth-child(2) {
  animation-delay: 0.16s;
}
.hero-copy > :nth-child(3) {
  animation-delay: 0.26s;
}
.hero-copy > :nth-child(4) {
  animation-delay: 0.36s;
}

.bento {
  display: grid;
  gap: 12px;
  width: 100%;
  cursor: default;
}
.bento-cell {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #cfd3d4;
  background: var(--white);
  animation: bentoReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease;
}
.bento-cell:nth-child(1) {
  animation-delay: 0.18s;
}
.bento-cell:nth-child(2) {
  animation-delay: 0.28s;
}
.bento-cell:nth-child(3) {
  animation-delay: 0.38s;
}
.bento-cell > * {
  position: relative;
  z-index: 1;
}
.bento-index {
  display: block;
  color: #70777a;
  font:
    800 11px/1.2 "Geist Mono",
    monospace;
  letter-spacing: 0.13em;
}
.bento.bento-simple {
  grid-template-columns: minmax(0, 1fr) minmax(172px, 0.39fr);
  grid-template-rows: 410px 138px;
  gap: 10px;
}
.bento-simple .bento-cell {
  padding: 30px;
  border-color: #d4d8d9;
}
.bento-simple .bento-cell::after {
  display: none;
}
.bento-simple .bento-cell:hover {
  background-color: var(--white);
  border-color: #577b89;
}
.funnel-card {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.funnel-title {
  align-self: center;
  width: 100%;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(40px, 3.15vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 660;
}
.funnel-title > span,
.funnel-title em {
  display: block;
  white-space: nowrap;
}
.funnel-title em {
  color: var(--accent);
  font-style: normal;
  font-weight: inherit;
  padding: 5px 0 5px;
}
.funnel-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.funnel-steps span {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 10px 0 0;
  color: #62686b;
  font-size: 12.5px;
  animation: cleanStep 6s ease-in-out infinite;
}
.funnel-steps span::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #9da6aa;
  animation: cleanStepDot 6s ease-in-out infinite;
}
.funnel-steps span:nth-of-type(2) {
  animation-delay: 2s;
}
.funnel-steps span:nth-of-type(3) {
  animation-delay: 4s;
}
.funnel-steps span:nth-of-type(2)::before {
  animation-delay: 2s;
}
.funnel-steps span:nth-of-type(3)::before {
  animation-delay: 4s;
}
.funnel-steps small {
  color: #8a9093;
  font:
    500 11px/1 "Geist Mono",
    monospace;
}
.always-on-card {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--graphite);
  border-color: var(--graphite);
  color: white;
}
.bento-simple .always-on-card:hover {
  background-color: #151819;
  border-color: #315364;
}
.system-active {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca2a4;
  font:
    500 11px/1 "Geist Mono",
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.system-active i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #79afc7;
  animation: statusPulse 2.8s ease-in-out infinite;
}
.always-on-card > strong {
  color: white;
  font-size: clamp(52px, 4.4vw, 66px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 590;
}
.always-on-card p {
  max-width: 150px;
  margin: 0;
  color: #8f9598;
  font-size: 11.5px;
  line-height: 1.5;
}
.result-card {
  grid-column: 1/-1;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1.66fr);
  align-items: center;
  gap: 28px;
  background: var(--white);
}
.result-card strong {
  max-width: 470px;
  color: var(--graphite);
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 620;
}
.hero-foot {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #8c9092;
  font:
    500 10px/1 "Geist Mono",
    monospace;
  letter-spacing: 0.13em;
}

.section {
  padding-block: clamp(104px, 11vw, 164px);
}
.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 370px);
  column-gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.section-intro .kicker {
  grid-column: 1/-1;
}
.section-intro h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(48px, 5.8vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.068em;
  font-weight: 640;
  text-wrap: balance;
}
.section-intro h2 span {
  color: var(--accent);
}
.section-intro > p:last-child {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.problem-card {
  position: relative;
  cursor: default;
  min-height: 370px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 0.3s ease;
}
.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem-card:hover {
  background: var(--mist);
}
.problem-card:hover::before {
  transform: scaleX(1);
}
.card-number {
  color: var(--accent);
  font:
    500 11px/1 "Geist Mono",
    monospace;
  transition: letter-spacing 0.3s ease;
}
.problem-card:hover .card-number {
  letter-spacing: 0.18em;
}
.problem-card h3 {
  margin: 0 0 15px;
  font-size: 26px;
  letter-spacing: -0.045em;
  font-weight: 610;
}
.problem-card div p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.card-note {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #74797b;
  font:
    500 10px/1.2 "Geist Mono",
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.systems {
  background: var(--graphite);
  color: #f4f4f2;
}
.systems .kicker {
  color: #74a8c0;
}
.section-intro-light h2 span {
  color: #9ea3a5;
}
.section-intro-light > p:last-child {
  color: #979b9d;
}
.system-list {
  border-top: 1px solid var(--line-dark);
  cursor: default;
}
.system-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(260px, 0.9fr) minmax(320px, 1fr) 130px;
  gap: 32px;
  align-items: center;
  min-height: 164px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 0.45s ease;
}
.system-row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: #74a8c0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.system-row:hover {
  background-color: rgba(255, 255, 255, 0.035);
}
.system-row:hover::before {
  transform: scaleY(1);
}
.system-number,
.system-label {
  color: #74797b;
  font:
    500 10px/1.2 "Geist Mono",
    monospace;
  letter-spacing: 0.1em;
}
.system-number {
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.system-row h3 {
  margin: 0;
  font-size: clamp(25px, 2.4vw, 35px);
  letter-spacing: -0.045em;
  font-weight: 520;
  transition:
    color 0.35s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.system-row:hover h3 {
  color: #9bc2d4;
}
.system-row p {
  margin: 0;
  color: #9a9ea0;
  font-size: 13px;
  line-height: 1.65;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.system-row:hover .system-number,
.system-row:hover h3,
.system-row:hover p {
  transform: translateX(12px);
}
.system-label {
  justify-self: end;
  padding: 0 10px;
  color: #74a8c0;
}

.privacy {
  position: relative;
  background: linear-gradient(180deg, #edf3f5 0%, #f7f9f9 100%);
  border-top: 1px solid #d5e0e3;
  border-bottom: 1px solid var(--line);
}
.privacy-intro h2 {
  max-width: 920px;
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cbd6da;
  border-left: 1px solid #cbd6da;
}
.privacy-card {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  padding: 30px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-right: 1px solid #cbd6da;
  border-bottom: 1px solid #cbd6da;
  background: rgba(255, 255, 255, 0.72);
  cursor: default;
}

.privacy-card > * {
  position: relative;
  z-index: 2;
}

.privacy-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-color: #123949;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(
      circle at 100% 0,
      rgba(102, 190, 219, 0.28),
      transparent 42%
    );
  background-size:
    28px 28px,
    28px 28px,
    auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(120, 202, 228, 0.48);
  box-shadow:
    inset 0 0 50px rgba(72, 155, 183, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: scale(0.985);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (hover: hover) and (pointer: fine) {
  .privacy-card:hover {
    border-color: #afc5ce;
    background-color: rgba(255, 255, 255, 0.94);
    box-shadow: inset 0 0 0 1px rgba(22, 75, 102, 0.08);
  }

  .privacy-card:hover::before {
    opacity: 1;
    transform: scale(1);
  }
}
.privacy-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.privacy-number {
  color: var(--accent);
  font:
    500 11px/1 "Geist Mono",
    monospace;
  letter-spacing: 0.1em;
  transition:
    color 0.4s ease,
    letter-spacing 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.privacy-marker {
  position: relative;
  width: 94px;
  height: 18px;
  background-image: linear-gradient(#aebdc2, #aebdc2);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 58px 1px;
  transition: background-size 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .privacy-card:hover::before {
    opacity: 1;
  }

  .privacy-card:hover::after {
    opacity: 1;
    transform: scale(1);
  }

  .privacy-card:hover .privacy-number {
    color: #8fd4e9;
    letter-spacing: 0.18em;
  }

  .privacy-card:hover .privacy-marker {
    background-size: 0 1px;
  }

  .privacy-card:hover .privacy-marker::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  .privacy-card:hover .privacy-marker::after {
    opacity: 1;
    transform: translate(0, -50%);
  }

  .privacy-card:hover .privacy-card-body {
    transform: translateY(-5px);
  }

  .privacy-card:hover h3 {
    color: #ffffff;
  }

  .privacy-card:hover .privacy-card-body p {
    color: rgba(235, 245, 248, 0.76);
  }

  .privacy-card:hover .privacy-note {
    color: #c5dce4;
    border-color: rgba(190, 224, 235, 0.22);
  }

  .privacy-card:hover .privacy-note::before {
    background: #79c9e2;
  }
}
.privacy-card-body {
  align-self: center;
  padding-block: 42px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.privacy-card h3 {
  margin: 0 0 18px;
  color: var(--graphite);
  font-size: clamp(25px, 2.1vw, 31px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 610;
  transition: color 0.4s ease;
}
.privacy-card-body p {
  margin: 0;
  color: #60686b;
  font-size: 13px;
  line-height: 1.72;
  transition: color 0.4s ease;
}
.privacy-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid #d2dcdf;
  color: #596164;
  font:
    500 10px/1.2 "Geist Mono",
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
}
.privacy-note::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease;
}

.process-intro {
  margin-bottom: 76px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  cursor: default;
}
.timeline-step {
  min-height: 430px;
  padding: 26px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s ease;
}
.timeline-step:hover {
  background-color: var(--white);
}
.step-number {
  color: var(--accent);
  font-size: clamp(86px, 10vw, 142px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  font-weight: 180;
  transition:
    letter-spacing 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease;
}
.timeline-step:hover .step-number {
  color: #24779e;
  letter-spacing: -0.035em;
}
.timeline-step h3 {
  margin: 0 0 15px;
  font-size: 28px;
  letter-spacing: -0.045em;
  font-weight: 590;
}
.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.contact {
  padding: 10px;
  background: var(--paper);
}
.contact-panel {
  position: relative;
  width: min(1440px, 100%);
  overflow: hidden;
  padding: clamp(52px, 7vw, 100px);
  background: var(--graphite);
  color: #f4f4f2;
}
.contact-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #5f95ae;
  transform: scaleX(1);
  transform-origin: left;
}
.contact-panel .kicker {
  color: #74a8c0;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  gap: clamp(70px, 12vw, 180px);
  align-items: end;
}
.contact-grid,
.contact-grid > * {
  min-width: 0;
}
.contact-title-mobile-break {
  display: none;
}
.contact h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(53px, 7vw, 102px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 630;
  text-wrap: balance;
}
.contact-action p {
  margin: 0 0 28px;
  color: #9da1a3;
  font-size: 13px;
  line-height: 1.7;
}
.contact-button {
  width: 100%;
  background: #f2f2ef;
  border-color: #f2f2ef;
  color: var(--graphite);
}
.contact-button:hover {
  background: #74a8c0;
  border-color: #74a8c0;
}
.contact-panel .site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 48px;
  margin-top: clamp(92px, 13vw, 180px);
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.wordmark-light {
  color: white;
}
.site-footer-meta {
  display: contents;
}
.site-footer-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 40px;
}
.site-footer-links a {
  color: #a0a5a7;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.site-footer-links a:hover {
  color: #f4f4f2;
}
.contact-panel footer p,
.contact-panel footer > span {
  margin: 0;
  color: #777c7e;
  font-size: 12px;
}
.contact-panel footer > span {
  justify-self: end;
}
.site-footer-copyright {
  justify-self: end;
  margin: 0;
  color: #777c7e;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  clip-path: inset(0 0 14% 0);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: none;
}

.js .contact-panel::before {
  transform: scaleX(0);
}

.js .contact-panel:has(> .kicker.reveal.is-visible)::before {
  animation: contactLine 4s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
}

@media (max-width: 1550px) {
  .hero-grid {
    gap: 50px;
  }
}

@media (max-width: 1340px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 880px;
  }
  .bento {
    max-width: 1000px;
  }
  .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 1050px) {
  .section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .section-intro > p:last-child {
    max-width: 470px;
  }
  .system-row {
    grid-template-columns: 50px minmax(230px, 0.8fr) 1fr;
  }
  .system-label {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-action {
    max-width: 480px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }
  .shell {
    width: min(100% - 32px, 1280px);
  }
  .site-header {
    height: 68px;
  }
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .site-header nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 0;
    padding: 10px 16px 16px;
    background: linear-gradient(180deg, #dcecf1 0%, #f7fafb 100%);
    border: 0;
    border-bottom: 1px solid #bed3dc;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s;
  }
  .site-header nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-header nav a {
    min-height: 0;
    padding: 18px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    opacity: 0;
    transform: translateY(-7px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease;
  }
  .site-header nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }
  .site-header nav.is-open a:nth-child(1) {
    transition-delay: 0.04s;
  }
  .site-header nav.is-open a:nth-child(2) {
    transition-delay: 0.08s;
  }
  .site-header nav.is-open a:nth-child(3) {
    transition-delay: 0.12s;
  }
  .site-header nav.is-open a:nth-child(4) {
    transition-delay: 0.16s;
  }
  .site-header nav a::after {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .hero-grid {
    min-height: auto;
    gap: 64px;
    padding-block: 70px;
  }
  h1 {
    font-size: clamp(50px, 14.6vw, 68px);
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .primary-button {
    width: 100%;
  }
  .quiet-link {
    align-self: flex-start;
  }
  .bento.bento-simple {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 195px;
    gap: 10px;
  }
  .bento-simple .bento-cell {
    padding: 24px;
  }
  .funnel-card {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .funnel-title {
    font-size: clamp(37px, 9vw, 47px);
  }
  .always-on-card {
    grid-column: 1;
    grid-row: 2;
  }
  .always-on-card > strong {
    font-size: 40px;
  }
  .result-card {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
  .result-card strong {
    font-size: 22px;
  }
  .hero-foot {
    gap: 16px;
    overflow: hidden;
  }
  .hero-foot span:last-child {
    display: inline;
  }
  .section {
    padding-block: 94px;
  }
  .section-intro {
    margin-bottom: 45px;
  }
  .section-intro h2 {
    font-size: clamp(45px, 13vw, 62px);
  }
  .problem-grid,
  .privacy-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
  .problem-card {
    min-height: 315px;
  }
  .privacy-card {
    min-height: 315px;
    padding: 26px;
  }
  .system-row {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding-block: 35px;
  }
  .system-row h3 {
    font-size: 25px;
  }
  .system-row p {
    grid-column: 2;
  }
  .timeline-step {
    min-height: 350px;
  }
  .step-number {
    font-size: 105px;
  }
  .contact {
    padding: 8px;
  }
  .contact-panel {
    padding: 54px 24px 28px;
    width: min(1440px, 100%);
  }
  .contact h2 {
    font-size: clamp(48px, 13.5vw, 67px);
  }
  .contact-panel footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }
  .contact-panel footer > span {
    justify-self: start;
  }
  .hero > .shell {
    width: min(1280px, calc(100% - 32px));
  }
}

@media (max-width: 600px) {
  .contact-title-mobile-break {
    display: block;
  }
}

@media (max-width: 520px) {
  .funnel-title > span,
  .funnel-title em {
    white-space: normal;
  }
  .bento.bento-simple {
    display: flex;
    flex-direction: column;
    max-width: none;
  }
  .bento-simple .bento-cell {
    padding: 24px;
  }
  .funnel-card {
    min-height: 350px;
  }
  .funnel-steps span {
    gap: 5px;
    padding: 14px 4px 0 0;
    font-size: 9px;
  }
  .always-on-card {
    min-height: 220px;
  }
  .result-card {
    min-height: 180px;
  }
}

@media (max-width: 420px) {
  .hero-foot {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .hero-foot span {
    white-space: nowrap;
  }

  .hero-foot span:first-child {
    justify-self: start;
  }

  .hero-foot span:nth-child(2) {
    justify-self: center;
  }

  .hero-foot span:last-child {
    display: inline;
    justify-self: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

@keyframes cleanStep {
  0%,
  22% {
    color: var(--accent-dark);
  }
  30%,
  100% {
    color: #62686b;
  }
}

@keyframes cleanStepDot {
  0%,
  22% {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
  }
  30%,
  100% {
    background: var(--white);
    border-color: #9da6aa;
    transform: scale(1);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(109, 166, 191, 0.24);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(109, 166, 191, 0.123);
  }
}

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

@keyframes bentoReveal {
  from {
    opacity: 0;
    transform: scale(0.975);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contactLine {
  from {
    transform: scaleX(0);
    opacity: 0.4;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Kontaktformular */

.contact-page {
  min-height: 100vh;
  color: #6e7578;
  font-size: 11.5px;
  font-weight: 400;
}

#inquiry-title {
  color: var(--graphite);
}

.contact-page .inquiry-section {
  min-height: calc(100svh - 82px);
  padding: clamp(54px, 7vw, 104px) 0 clamp(72px, 8vw, 120px);
}

.contact-page .inquiry-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(72px, 9vw, 150px);
  align-items: start;
}

.contact-page .inquiry-intro {
  position: sticky;
  top: 132px;
}

.contact-page .back-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(52px, 7vw, 90px);
  color: #50575a;
  font-size: 13px;
  line-height: 1.5;
}

.contact-page .back-link span {
  color: var(--accent);
  transition: transform 0.25s ease;
}

.contact-page .back-link:hover span {
  transform: translateX(-4px);
}

.contact-page .eyebrow,
.contact-page .kicker {
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.contact-page .inquiry-intro h1 {
  max-width: 760px;
  font-size: clamp(52px, 5vw, 78px);
}

.contact-page .inquiry-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: #5c6366;
  font-size: 16px;
  line-height: 1.78;
}

.contact-page .inquiry-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(52px, 7vw, 86px);
  border-top: 1px solid var(--line);
}

.contact-page .inquiry-meta > div {
  position: relative;
  min-width: 0;
  padding: 19px 16px 0 0;
}

.contact-page .inquiry-meta > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.contact-page .inquiry-meta span {
  display: inline-flex;
  color: var(--accent);
  font:
    600 10px/1.3 "Geist Mono",
    monospace;
  letter-spacing: 0.09em;
  transform-origin: center;
}

.contact-page .inquiry-meta > div:nth-child(2) span {
  animation-delay: 0.55s;
}

.contact-page .inquiry-meta > div:nth-child(3) span {
  animation-delay: 1.1s;
}

.contact-page .inquiry-meta p {
  margin: 10px 0 0;
  color: #5f6669;
  font-size: 12.5px;
  line-height: 1.6;
}

.contact-page .inquiry-meta strong {
  display: block;
  color: #242a2d;
  font-size: 13.5px;
  font-weight: 600;
}

.contact-page .form-panel {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 112px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid #cfd3d4;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 35, 44, 0.055);
  animation: contactReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.18s;
}

@keyframes formPanelAccent {
  0%,
  15% {
    left: -30%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  70% {
    left: 100%;
    opacity: 1;
  }

  80%,
  100% {
    left: 100%;
    opacity: 0;
  }
}

.contact-page .form-panel::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: -1px;
  left: -30%;
  display: block;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #24779e, transparent);
  pointer-events: none;
  animation: formPanelAccent 5s ease-in-out infinite;
}

.contact-page .form-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.contact-page .form-panel-head .kicker {
  margin: 0;
}

.contact-page .form-panel-head > span {
  max-width: 270px;
  color: #62696c;
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

.contact-page .required-star {
  color: #c62828;
  font-weight: 700;
}

.contact-page .inquiry-form {
  margin-top: 30px;
}

.contact-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 22px;
}

.contact-page .field {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 10px 0;
}

.contact-page .field label,
.contact-page .focus-fieldset legend {
  color: #252b2e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-page .field input,
.contact-page .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bfc4c6;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.65;
  outline: 0;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.contact-page .field input {
  height: 50px;
  padding: 0;
}

.contact-page .field textarea {
  min-height: 172px;
  resize: vertical;
  padding: 14px 0;
}

.contact-page .field input::placeholder,
.contact-page .field textarea::placeholder {
  color: #7c8386;
  opacity: 1;
}

.contact-page .field input:focus,
.contact-page .field textarea:focus {
  border-bottom-color: var(--accent);
}

.contact-page .field.is-invalid input,
.contact-page .field.is-invalid textarea {
  border-bottom-color: #a52f2f;
}

.contact-page .field-error,
.contact-page .fieldset-error,
.contact-page .consent-error {
  color: #a52f2f;
  font-size: 11.5px;
  line-height: 1.5;
}

.contact-page .field-error {
  position: absolute;
  z-index: 1;
  top: calc(100% - 5px);
  left: 0;
  display: block;
  max-width: 100%;
  font-size: clamp(8.75px, 2.4vw, 10.5px);
  line-height: 1.35;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.contact-page .fieldset-error,
.contact-page .consent-error {
  display: block;
  min-height: 1.5em;
  visibility: hidden;
  opacity: 0;
}

.contact-page .field.is-invalid .field-error,
.contact-page .focus-fieldset.is-invalid .fieldset-error,
.contact-page .consent.is-invalid + .consent-error {
  visibility: visible;
  opacity: 1;
}

.contact-page .focus-fieldset {
  margin: 34px 0 0;
  padding: 0;
  border: 0;
}

.contact-page .focus-fieldset legend {
  margin-bottom: 14px;
}

.contact-page .focus-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-page .focus-options label {
  cursor: pointer;
}

.contact-page .focus-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-page .focus-options span {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #444b4e;
  font-size: 12.5px;
  line-height: 1.45;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.contact-page .focus-options b {
  color: #7b8386;
  font:
    600 10px/1 "Geist Mono",
    monospace;
}

.contact-page .focus-options label:hover span {
  background: var(--mist);
}

.contact-page .focus-options input:checked + span {
  background: #e8f0f3;
  color: var(--accent-dark);
  box-shadow: inset 2px 0 0 var(--accent);
}

.contact-page .focus-options input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}

.contact-page .focus-fieldset .fieldset-error {
  margin-top: 8px;
}

.contact-page .field-message {
  margin-top: 9px;
}

.contact-page .label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-page .label-row > span {
  color: #62696c;
  font:
    500 11px/1 "Geist Mono",
    monospace;
}

.contact-page .field-hint {
  display: block;
  margin-top: 8px;
  color: #697073;
  font-size: 11.5px;
  line-height: 1.55;
}

.contact-page .field-goal {
  margin-top: 26px;
}

.contact-page .consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 30px;
  color: #50575a;
  font-size: 12px;
  line-height: 1.6;
  cursor: pointer;
}

.contact-page .consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.contact-page .consent.is-invalid {
  color: #8e3030;
}

.contact-page .consent-error {
  margin: 7px 0 0 29px;
}

.contact-page .form-submit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin-top: 6px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-page .form-submit-row p {
  margin: 0;
  color: #62696c;
  font-size: 11.5px;
  line-height: 1.6;
}

.contact-page .form-submit-row p a,
.contact-page .form-noscript a {
  color: var(--accent);
}

.contact-page .submit-button {
  min-width: 230px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-page .submit-button:hover {
  background: var(--accent-dark);
}

.contact-page .submit-button span {
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.contact-page .submit-button:hover span {
  transform: translateX(5px);
}

.contact-page .form-status,
.contact-page .form-noscript {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid #b9cdd5;
  background: #edf4f6;
  color: var(--accent-dark);
  font-size: 12px;
  line-height: 1.6;
}

.contact-page-footer {
  background-color: var(--graphite);
}

.contact-page .contact-page-footer {
  animation: contactReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.52s;
}

.contact-page .contact-page-footer .contact-page-footer-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.contact-page .inquiry-intro > * {
  animation: contactReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-page .inquiry-intro > :nth-child(1) {
  animation-delay: 0.05s;
}
.contact-page .inquiry-intro > :nth-child(2) {
  animation-delay: 0.12s;
}
.contact-page .inquiry-intro > :nth-child(3) {
  animation-delay: 0.2s;
}
.contact-page .inquiry-intro > :nth-child(4) {
  animation-delay: 0.3s;
}
.contact-page .inquiry-intro > :nth-child(5) {
  animation-delay: 0.4s;
}
@keyframes contactReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .contact-page .inquiry-shell {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .contact-page .inquiry-intro {
    position: static;
  }

  .contact-page .inquiry-intro h1 {
    max-width: 900px;
  }

  .contact-page .inquiry-lead {
    max-width: 720px;
  }

  .contact-page .inquiry-meta {
    max-width: 700px;
  }
}

@media (max-width: 760px) {
  .contact-page .inquiry-section {
    min-height: auto;
    padding: 48px 0 72px;
  }

  .contact-page .back-link {
    margin-bottom: 48px;
  }

  .contact-page .inquiry-intro h1 {
    font-size: clamp(47px, 13vw, 64px);
  }

  .contact-page .inquiry-meta {
    grid-template-columns: 1fr;
  }

  .contact-page .inquiry-meta > div {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-page .inquiry-meta > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .contact-page .inquiry-meta p {
    margin: 0;
  }

  .contact-page .form-panel {
    margin-inline: -8px;
    padding: 34px 24px;
    animation-delay: 0.12s;
  }

  .contact-page .form-panel-head {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .contact-page .form-panel-head > span {
    text-align: left;
  }

  .contact-page .form-grid,
  .contact-page .focus-options {
    grid-template-columns: 1fr;
  }

  .contact-page .form-grid {
    gap: 15px;
  }

  .contact-page .form-submit-row {
    grid-template-columns: 1fr;
  }

  .contact-page .submit-button {
    width: 100%;
  }

  .contact-page .contact-page-footer .contact-page-footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    padding-block: 28px;
  }

  .contact-panel .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  .site-footer-links {
    flex-direction: column;
    align-items: flex-start;
    justify-self: start;
    gap: 12px;
  }
  
  .site-footer-copyright {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page .inquiry-intro > *,
  .contact-page .form-panel,
  .contact-page .contact-page-footer,
  .contact-page .inquiry-meta span {
    animation: none !important;
  }
  .hero-scroll-line::after {
    animation: none;
    transform: translate(-50%, 10px) rotate(45deg);
  }
}

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

.contact-page .field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 46px 14px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background-color: var(--white);
  background-image:
    linear-gradient(45deg, transparent 50%, #62696c 50%),
    linear-gradient(135deg, #62696c 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-page .field select:hover {
  border-color: #aab2b5;
}

.contact-page .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(22, 75, 102, 0.08);
}

.contact-page .field select:invalid {
  color: #777f82;
}

.contact-page .field select option {
  color: var(--ink);
  background: var(--white);
}

.contact-page .field.is-invalid select {
  border-color: #b42318;
  background-color: #fffafa;
}

@media (max-width: 760px) {
  .contact-page .field-wide {
    grid-column: auto;
  }

  .contact-page .field select {
    min-height: 56px;
    font-size: 16px;
  }
}

.contact-page .field-company-size {
  margin-top: 20px;
}

.field-system-time {
  margin-top: 20px;
}

.site-footer-links a[aria-current="page"] {
  color: #f4f4f2;
}