html {
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  -ms-overflow-style: none;
}

@media (max-width: 1023px) {
  html {
    scrollbar-width: auto;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: initial;
    height: initial;
  }

  body {
    -ms-overflow-style: auto;
  }
}

.process-site-header {
  height: 80px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.075);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -18px, 0);
  transition:
    opacity 0.42s ease,
    transform 0.54s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.54s,
    box-shadow 0.24s ease;
  visibility: hidden;
}

.process-site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
  visibility: visible;
}

.process-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, 1200px);
  height: 100%;
  margin: 0 auto;
  gap: 24px;
}

.process-header-brand,
.process-header-nav,
.process-header-cta,
.process-mobile-cta,
.process-language {
  display: inline-flex;
  align-items: center;
}

.process-header-brand {
  flex: 0 0 auto;
  gap: 13px;
  min-width: 222px;
  color: #062249;
  line-height: 1;
}

.process-header-logo-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(14, 79, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.82)),
    #ffffff;
  box-shadow: 0 14px 30px rgba(6, 34, 73, 0.08);
  overflow: hidden;
}

.process-header-monogram {
  position: relative;
  z-index: 1;
  color: #0e4fff;
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 10px 18px rgba(14, 79, 255, 0.16);
}

.process-brand-copy {
  display: grid;
  gap: 5px;
}

.process-brand-name {
  color: #062249;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.process-brand-label {
  color: #64748b;
  font-size: 0.69rem;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.process-header-nav {
  position: relative;
  align-self: stretch;
  justify-content: center;
  gap: 8px;
  padding: 0 8px;
}

.process-header-nav::after {
  display: none;
}

.process-site-header .nav-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #516070;
  font-size: 0.86rem;
  font-weight: 820;
  line-height: 1.05;
  white-space: nowrap;
  transition: color 0.22s ease, transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.process-site-header .nav-link::before {
  display: none;
  content: none;
}

.process-site-header .nav-link::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0e4fff 0%, #77b8ff 100%);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-site-header .nav-link:hover,
.process-site-header .nav-link.active {
  color: #0e4fff;
  transform: translateY(-1px);
}

.process-site-header .nav-link.active {
  background: linear-gradient(180deg, rgba(14, 79, 255, 0.12), rgba(14, 79, 255, 0.06));
  border-color: rgba(14, 79, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 10px 26px rgba(14, 79, 255, 0.1);
}

.process-site-header .nav-link:hover::after,
.process-site-header .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.process-header-cta,
.process-mobile-cta {
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(6, 34, 73, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #062249 0%, #093265 46%, #0e4fff 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 840;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(6, 34, 73, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.process-header-cta {
  padding: 0 12px 0 18px;
}

.process-mobile-cta {
  padding: 0 12px 0 18px;
}

.process-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.24s ease, background 0.24s ease;
}

.process-header-cta:hover,
.process-mobile-cta:hover {
  background: linear-gradient(135deg, #061b3a 0%, #083a82 44%, #0645ec 100%);
  box-shadow: 0 18px 36px rgba(14, 79, 255, 0.24);
  transform: translateY(-1px);
}

.process-header-cta:hover .process-cta-arrow,
.process-mobile-cta:hover .process-cta-arrow {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(2px);
}

.process-language {
  position: relative;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #062249;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.process-language:hover,
.process-language:focus-within {
  border-color: rgba(14, 79, 255, 0.45);
  box-shadow: 0 16px 32px rgba(14, 79, 255, 0.12);
  transform: translateY(-1px);
}

.process-language--mobile {
  display: none;
}

.process-language-icon,
.process-language-chevron {
  flex: 0 0 auto;
  color: #0e4fff;
  pointer-events: none;
}

.process-language-icon svg {
  width: 18px;
  height: 18px;
}

.process-language-chevron svg {
  width: 16px;
  height: 16px;
}

.process-language-select {
  min-width: 112px;
  height: 46px;
  border: 0;
  border-radius: 0;
  appearance: none;
  background: transparent;
  color: #062249;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 840;
  line-height: 1;
  outline: 0;
}

.process-nav-toggle {
  display: none;
  flex: 0 0 auto;
  position: relative;
  background: #ffffff;
  color: #062249;
  border-color: rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}

.process-nav-toggle .close-icon {
  display: none;
}

body.nav-open .process-nav-toggle .menu-icon {
  display: none;
}

body.nav-open .process-nav-toggle .close-icon {
  display: block;
}

.process-mobile-panel {
  display: none;
  border: 1px solid rgba(226, 232, 240, 0.96);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  visibility: hidden;
}

body.nav-open .process-mobile-panel {
  transition-delay: 0s;
  visibility: visible;
}

.rocket-scroll {
  --rocket-progress: 0%;
  --rocket-y: 18px;
  position: fixed;
  top: 118px;
  right: 4px;
  z-index: 44;
  width: 38px;
  height: calc(100vh - 236px);
  min-height: 240px;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  overflow: visible;
  pointer-events: none;
  transform: translate3d(12px, 0, 0);
  transition: opacity 0.28s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.rocket-scroll::before {
  content: "";
  position: absolute;
  inset: 0 -4px;
}

.rocket-scroll.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.rocket-scroll-track {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(203, 213, 225, 0), rgba(203, 213, 225, 0.9), rgba(203, 213, 225, 0));
  transform: translateX(-50%);
  overflow: hidden;
}

.rocket-scroll-fill {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: var(--rocket-progress);
  border-radius: inherit;
  background: linear-gradient(180deg, #77b8ff 0%, #0e4fff 100%);
  box-shadow: 0 0 18px rgba(14, 79, 255, 0.36);
}

.rocket-scroll-ship {
  position: absolute;
  top: var(--rocket-y);
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(14, 79, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0e4fff;
  box-shadow:
    0 12px 28px rgba(6, 34, 73, 0.12),
    0 0 0 5px rgba(119, 184, 255, 0.12);
  transform: translate3d(-50%, -50%, 0) rotate(-42deg);
  transition: color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.rocket-scroll-ship svg {
  width: 19px;
  height: 19px;
}

.rocket-scroll:hover .rocket-scroll-ship,
.rocket-scroll:focus-visible .rocket-scroll-ship {
  color: #062249;
  box-shadow:
    0 16px 34px rgba(6, 34, 73, 0.16),
    0 0 0 6px rgba(14, 79, 255, 0.14),
    0 0 24px rgba(14, 79, 255, 0.22);
  transform: translate3d(-50%, -50%, 0) rotate(-42deg) scale(1.06);
}

.process-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 68px 0 74px;
}

.process-legacy-anchor {
  position: absolute;
  top: -90px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.process-shell {
  max-width: 1320px;
}

.process-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.process-title {
  margin: 0;
  color: #111111;
  font-size: 3.05rem;
  font-weight: 900;
  line-height: 1.02;
}

.process-title-gradient {
  background: linear-gradient(100deg, #77b8ff 0%, #0e4fff 45%, #062249 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.process-description {
  max-width: 650px;
  margin: 14px auto 0;
  color: #667085;
  font-size: 1.16rem;
  font-weight: 560;
  line-height: 1.75;
}

.process-timeline {
  --process-line-scale: 1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 68px;
  row-gap: 42px;
  margin-top: 42px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 82px;
  left: calc(12.5% + 86px);
  right: calc(12.5% + 86px);
  z-index: 0;
  border-top: 2px dashed rgba(14, 79, 255, 0.26);
  transform: scaleX(var(--process-line-scale));
  transform-origin: left center;
}

.process-section .process-step {
  position: relative;
  z-index: 1;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.process-element {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 164px;
  margin: 0 auto;
  pointer-events: none;
}

.process-rank {
  position: absolute;
  top: 52%;
  left: 14px;
  z-index: 0;
  color: rgba(6, 34, 73, 0.045);
  font-size: clamp(7.8rem, 11vw, 11.2rem);
  font-weight: 900;
  line-height: 0.78;
  pointer-events: none;
  text-shadow: 0 18px 46px rgba(14, 79, 255, 0.08);
  transform: translate3d(0, -50%, 0);
  transition: color 0.26s ease, text-shadow 0.26s ease, transform 0.26s ease;
  -webkit-text-stroke: 2px rgba(14, 79, 255, 0.28);
}

.process-step:nth-child(2) .process-rank,
.process-step:nth-child(3) .process-rank {
  left: -20px;
}

.process-step-title {
  margin-top: 12px;
  color: #062249;
  font-size: 1.22rem;
  font-weight: 860;
  line-height: 1.22;
}

.process-step-copy {
  max-width: 260px;
  min-height: 68px;
  margin: 10px auto 0;
  color: #667085;
  font-size: 0.96rem;
  font-weight: 520;
  line-height: 1.62;
}

.process-visual-float {
  position: relative;
  z-index: 1;
  display: block;
  will-change: transform;
}

.process-element-img {
  width: min(100%, 238px);
  max-height: 162px;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(6, 34, 73, 0.11));
  transform-origin: center;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.process-step:hover .process-rank {
  color: rgba(14, 79, 255, 0.065);
  text-shadow: 0 20px 52px rgba(14, 79, 255, 0.14);
  transform: translate3d(-4px, -50%, 0) scale(1.05);
}

.process-step:nth-child(2):hover .process-rank,
.process-step:nth-child(3):hover .process-rank {
  transform: translate3d(-10px, -50%, 0) scale(1.05);
}

.process-step:hover .process-element-img {
  filter: drop-shadow(0 0 16px rgba(14, 79, 255, 0.24)) drop-shadow(0 24px 42px rgba(6, 34, 73, 0.12));
  transform: scale(1.03) rotate(1.3deg);
}

.contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(84px, 9vw, 132px) 0 0;
  background:
    linear-gradient(128deg, rgba(14, 79, 255, 0.34) 0%, rgba(14, 79, 255, 0.06) 32%, rgba(14, 79, 255, 0) 58%),
    linear-gradient(232deg, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.05) 34%, rgba(212, 175, 55, 0) 62%),
    linear-gradient(180deg, #01040c 0%, #061225 48%, #02040a 100%);
  color: #ffffff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  opacity: 0.34;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(360px, 1fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: end;
  max-width: 1240px;
}

.contact-photo-panel {
  position: relative;
  display: flex;
  align-self: end;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(560px, 52vw, 720px);
}

.contact-photo-panel::before {
  content: "";
  position: absolute;
  inset: 16% 5% 0;
  border: 1px solid rgba(119, 184, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(142deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 42%, rgba(14, 79, 255, 0.12)),
    linear-gradient(180deg, rgba(8, 22, 48, 0.5), rgba(1, 4, 12, 0.22));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 30px 90px rgba(0, 0, 0, 0.34);
  transform: skewY(-4deg);
}

.contact-photo-panel::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 0;
  left: 10%;
  height: 20px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  filter: blur(18px);
}

.contact-portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.34));
}

.contact-portrait-picture {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 560px);
}

.contact-portrait-picture .contact-portrait {
  width: 100%;
}

.contact-content {
  display: grid;
  gap: 24px;
  max-width: 650px;
  padding: 0 0 clamp(68px, 7vw, 96px);
}

.contact-kicker {
  color: #77b8ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.contact-title {
  max-width: 9.5em;
  color: #ffffff;
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  font-weight: 950;
  line-height: 0.9;
}

.contact-title-gradient {
  display: inline-block;
  background: linear-gradient(100deg, #77b8ff 0%, #0e4fff 45%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(14, 79, 255, 0.46);
}

.contact-description {
  max-width: 560px;
  color: rgba(219, 234, 254, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 520;
  line-height: 1.72;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.contact-actions .btn {
  min-height: 52px;
}

.contact-actions .btn svg {
  width: 18px;
  height: 18px;
}

.contact-section .contact-primary {
  border-color: rgba(119, 184, 255, 0.74);
  background: linear-gradient(135deg, #0e4fff 0%, #0b63ff 48%, #77b8ff 100%);
  box-shadow: 0 16px 34px rgba(14, 79, 255, 0.26);
}

.contact-section .contact-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.contact-section .contact-secondary:hover {
  border-color: rgba(119, 184, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

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

.contact-link-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  align-items: center;
  min-width: 0;
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(219, 234, 254, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.contact-link-card:hover {
  border-color: rgba(119, 184, 255, 0.42);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.contact-link-card svg {
  color: #77b8ff;
}

.contact-link-card > svg {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 8px;
  background: rgba(119, 184, 255, 0.1);
}

.contact-link-card span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-link-label {
  color: #ffffff;
  font-size: 0.93rem;
  font-weight: 860;
  line-height: 1.1;
}

.contact-link-value {
  min-width: 0;
  color: rgba(219, 234, 254, 0.68);
  font-size: 0.82rem;
  font-weight: 620;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.sw-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(14, 79, 255, 0.1), rgba(212, 175, 55, 0.08), rgba(14, 79, 255, 0.06)),
    #02040a;
  color: #ffffff;
  padding: 32px 0 30px;
}

.sw-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(119, 184, 255, 0), rgba(119, 184, 255, 0.82), rgba(212, 175, 55, 0.62), rgba(119, 184, 255, 0));
}

.sw-footer-shell {
  position: relative;
  z-index: 2;
  max-width: 1240px;
}

.sw-footer-main {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.sw-footer-brand {
  max-width: none;
}

.sw-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
}

.sw-footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.sw-footer-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.34));
}

.sw-footer-logo-copy {
  display: grid;
  gap: 6px;
  line-height: 1;
}

.sw-footer-name {
  font-size: 1rem;
  font-weight: 900;
}

.sw-footer-label {
  color: rgba(219, 234, 254, 0.72);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.sw-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
}

.sw-footer-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: rgba(219, 234, 254, 0.72);
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sw-footer-link:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.sw-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(219, 234, 254, 0.16);
  color: rgba(219, 234, 254, 0.62);
  font-size: 0.82rem;
  font-weight: 640;
}

@supports ((-webkit-backdrop-filter: blur(18px)) or (backdrop-filter: blur(18px))) {
  .process-site-header {
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }
}

@media (max-width: 1023px) {
  .process-header-shell {
    width: min(100% - 32px, 760px);
  }

  .process-header-brand {
    min-width: 0;
  }

  .process-header-nav,
  .process-header-cta,
  .process-language--desktop {
    display: none;
  }

  .rocket-scroll {
    display: none;
  }

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

  .process-mobile-panel {
    display: grid;
    gap: 0;
    inset: 88px 16px auto 16px;
    padding: 8px 20px 16px;
    border-radius: 8px;
  }

  .process-mobile-panel .nav-link {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    min-height: 56px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-bottom: 1px solid rgba(226, 232, 240, 0.86);
    background: transparent;
  }

  .process-mobile-panel .nav-link::before {
    display: none;
    content: none;
  }

  .process-mobile-panel .nav-link::after {
    right: 12px;
    bottom: 9px;
    left: 12px;
    width: auto;
    height: 2px;
    display: block;
    transform-origin: center;
  }

  .process-mobile-panel .nav-link:hover,
  .process-mobile-panel .nav-link.active {
    color: #0e4fff;
    transform: none;
  }

  .process-mobile-cta {
    width: 100%;
    margin-top: 4px;
  }

  .process-mobile-panel .process-language--mobile {
    display: inline-flex;
    width: 100%;
    justify-content: flex-start;
    margin-top: 12px;
  }

  .process-mobile-panel .process-language-select {
    flex: 1 1 auto;
  }

  .process-title {
    font-size: 2.65rem;
  }

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
    margin-top: 40px;
  }

  .process-timeline::before {
    top: 78px;
    right: auto;
    bottom: 66px;
    left: 50%;
    border-top: 0;
    border-left: 2px dashed rgba(14, 79, 255, 0.22);
    transform: scaleY(var(--process-line-scale));
    transform-origin: center top;
  }

  .sw-footer {
    padding: 30px 0 28px;
  }

  .sw-footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .sw-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
  }

}

@media (max-width: 900px) {
  .contact-section {
    padding: 84px 0 0;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .contact-content {
    order: 1;
    max-width: 100%;
    padding: 0;
  }

  .contact-photo-panel {
    order: 2;
    width: min(100%, 520px);
    min-height: 540px;
    margin: 0 auto -1px;
  }

  .contact-portrait-picture,
  .contact-portrait {
    width: min(100%, 440px);
  }

  .contact-title {
    max-width: 10em;
  }
}

@media (max-width: 640px) {
  .process-site-header {
    height: 74px;
  }

  .process-header-shell {
    width: min(100% - 28px, 420px);
    gap: 12px;
  }

  .process-brand-name {
    font-size: 0.96rem;
  }

  .process-brand-label {
    display: none;
  }

  .process-header-logo-frame {
    width: 40px;
    height: 40px;
  }

  .process-header-monogram {
    font-size: 0.92rem;
  }

  .process-mobile-panel {
    inset: 82px 14px auto 14px;
  }

  .process-section {
    padding: 54px 0 62px;
  }

  .process-title {
    font-size: 2.18rem;
    line-height: 1.06;
  }

  .process-description {
    font-size: 0.98rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 36px;
  }

  .process-timeline::before {
    right: auto;
    bottom: 48px;
    left: 50%;
  }

  .process-section .process-step {
    min-height: auto;
    padding-left: 0;
    text-align: center;
  }

  .process-element {
    margin: 0 auto;
    justify-content: center;
    height: 144px;
  }

  .process-rank {
    left: 50%;
    font-size: 6.8rem;
    transform: translate3d(-50%, -50%, 0);
  }

  .process-step:nth-child(2) .process-rank,
  .process-step:nth-child(3) .process-rank {
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
  }

  .process-step:hover .process-rank {
    transform: translate3d(-50%, -50%, 0) scale(1.05);
  }

  .process-step:nth-child(2):hover .process-rank,
  .process-step:nth-child(3):hover .process-rank {
    transform: translate3d(-50%, -50%, 0) scale(1.05);
  }

  .process-step-title {
    margin-top: 14px;
  }

  .process-step-copy {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .process-element-img {
    max-width: min(100%, 250px);
    max-height: 140px;
  }

  .process-step-copy {
    min-height: auto;
  }

  .sw-footer {
    padding: 28px 0 26px;
  }

  .sw-footer-main {
    gap: 24px;
  }

  .sw-footer-nav {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .sw-footer-link {
    font-size: 0.9rem;
  }

  .sw-footer-bottom {
    gap: 8px;
    margin-top: 38px;
  }

}

@media (max-width: 640px) {
  .contact-section {
    padding: 46px 0 0;
  }

  .contact-shell {
    gap: 0;
  }

  .contact-photo-panel {
    order: 1;
    z-index: 1;
    width: min(100%, 430px);
    min-height: min(112vw, 430px);
    margin: 0 auto;
  }

  .contact-photo-panel::before {
    inset: 16% 0 10px;
  }

  .contact-photo-panel::after {
    right: -24px;
    bottom: -18px;
    left: -24px;
    z-index: 3;
    height: 108px;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(2, 4, 10, 0) 0%, rgba(2, 4, 10, 0.62) 48%, #02040a 100%);
    filter: blur(10px);
    pointer-events: none;
  }

  @supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
    .contact-photo-panel::after {
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
    }
  }

  .contact-portrait-picture,
  .contact-portrait {
    width: min(92vw, 355px);
  }

  .contact-content {
    order: 2;
    position: relative;
    z-index: 5;
    gap: 18px;
    margin-top: clamp(-118px, -28vw, -86px);
  }

  .contact-kicker {
    color: #ffffff;
    font-size: 0.76rem;
  }

  .contact-title {
    position: relative;
    z-index: 6;
    max-width: 8.2em;
    font-size: clamp(2.72rem, 12vw, 3.62rem);
    line-height: 0.94;
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
  }

  .contact-description {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .contact-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
  }

  .contact-actions .btn {
    width: 100%;
    min-height: 54px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-site-header,
  .process-header-cta,
  .process-mobile-cta,
  .process-language,
  .process-site-header .nav-link,
  .rocket-scroll,
  .rocket-scroll-ship,
  .process-rank,
  .process-element-img {
    transition-duration: 0.001ms !important;
  }
}
