:root {
  --page-width: 1440px;
  --white: #ffffff;
  --orange: #fea502;
  --orange-hot: #ff6b00;
  --text: #d9d9d9;
  --muted: #8b8c91;
  --line: #343434;
  --panel: #252525;
  --panel-dark: #1b1b1b;
  --bg: #1b1b1b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Geist", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 22px;
  padding: 24px;
  color: var(--white);
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 450ms ease, visibility 450ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader img {
  width: 145px;
  height: auto;
  object-fit: contain;
}

.page-loader-bar {
  position: relative;
  overflow: hidden;
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.page-loader-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot));
  transform: translateX(-100%);
  animation: page-loader-progress 1.1s ease-in-out infinite;
}

.page-loader-text {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes page-loader-progress {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader-bar::after {
    animation: none;
    transition: none;
  }
}

.site-header,
main,
.site-footer {
  width: min(100%, var(--page-width));
  margin-left: auto;
  margin-right: auto;
}

body::selection {
  color: #151515;
  background: var(--orange);
}

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

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: relative;
  z-index: 20;
  --header-line-offset: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 0 clamp(20px, 5vw, 75px);
  background: rgba(27, 27, 27, 0.86);
  backdrop-filter: blur(16px);
}

.site-header::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: calc(50% + var(--header-line-offset));
  height: 1px;
  background: var(--orange);
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 1;
  display: block;
  background: var(--bg);
}

.menu-toggle {
  display: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: -1px;
}

.brand-mark::after {
  content: "";
  width: 22px;
  height: 4px;
  margin-left: -18px;
  margin-top: 19px;
  background: var(--orange-hot);
  box-shadow: 0 -10px 0 var(--orange-hot);
  transform: skewX(-24deg);
}

.brand img {
  width: 97px;
  height: 80px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 60px;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #9d9da1;
}

.desktop-nav a,
.phone {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.phone:hover {
  color: var(--orange);
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--orange);
  font-family: "Geist", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
}

.phone img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.section {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0;
}

.compact {
  padding: 28px 0 68px;
}

.stats,
.expert {
  margin: 0;
}

.hero {
  position: relative;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1.03fr 1.2fr;
  align-items: center;
  column-gap: clamp(30px, 6vw, 90px);
  row-gap: 82px;
  padding: 20px 58px 133px 80px;
}

.hero h1 {
  width: min(585px, 100%);
  margin: 0;
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero h1 .black-word {
  color: transparent;
  background: conic-gradient(from 270deg at 80% 50%, #e4e4ec 0 41%, #6a6a72 77%, #e4e4ec 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero h1 .fox-word,
.eyebrow,
.service-content span {
  color: var(--orange);
}

.lead {
  width: min(591px, 100%);
  margin: 0px 0 57px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-points {
  display: grid;
  gap: 25px;
  padding: 0;
  margin: 0 0 0 27px;
  list-style: none;
  color: var(--text);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-points li {
  display: flex;
  align-items: center;
}

.hero-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  color: #111;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot));
}

.btn.ghost {
  color: var(--text);
  background: #282828;
  border-color: #383838;
}

.asset-frame {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  /*background:
    radial-gradient(circle at 68% 45%, rgba(254, 165, 2, 0.17), transparent 26%),
    linear-gradient(135deg, #262626, #101010); */
}

/*.asset-frame::before {
  content: "FIGMA IMAGE";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
} */

.asset-frame img,
.asset-frame video,
.service-art img {
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: absolute;
  right: 58px;
  top: 25px;
  transform: none;
  width: 681px;
  max-width: 100%;
  height: 416px;
  border: 0;
  background: none;
}

.expert-laptop-frame {
  width: 628px;
  max-width: 100%;
  height: 367px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.expert-laptop-frame::before {
  content: none;
}

.expert-content {
  width: 628px;
  max-width: 100%;
}

.stats {
  width: 100%;
  padding: 0px 58px 0px 80px;
  display: grid;
  grid-template-columns: repeat(4, 302px);
  gap: 24px;
  justify-content: start;
}

.stats article {
  min-height: 155px;
  padding: 26px;
  border: 1px solid #373737;
  background: var(--panel);
}

.stats article {
  width: 302px;
  height: 302px;
  padding: 32px;
  border-radius: 25px;
}

.stats strong {
  display: block;
  width: 238px;
  margin-bottom: 20px;
  color: var(--orange);
  font-family: "Geist", Arial, sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.stats span {
  display: block;
  width: 238px;
  margin: 0;
  color: var(--orange);
  font-family: "Geist", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stats p {
  width: 238px;
  margin: 0;
  font-family: "Geist", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.expert-content > p:not(.eyebrow),
.process p:not(.eyebrow):not(.section-code),
.benefits p:not(.eyebrow):not(.section-code),
.contact p:not(.eyebrow):not(.section-code),
.service-content p {
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.expert {
  padding: 150px 58px 0px 80px;
  width:100%;
}

.section-code {
  margin: 0 0 35px;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.expert-grid,
.process,
.benefits,
.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: clamp(28px, 5vw, 24px);
  align-items: center;
}

.expert h2,
.services h2,
.process h2,
.benefits h2,
.contact h2 {
  max-width: 760px;
  margin: 8px 0 16px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
  font-weight: 900;
}

.expert h2 {
  font-family: "Geist", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
}

.process h2 {
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.benefits h2 {
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.contact h2 {
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.expert-content > p:not(.eyebrow) {
  font-family: "Geist", Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 0;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 300;
  text-transform: uppercase;
}

.competencies {
  margin-top: 100px;
}

.competencies ol,
.process-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  counter-reset: item;
}

.competencies li,
.process-list li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-family: "Geist", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.competencies li:first-child {
  border-top: 1px solid var(--line);
}

.competencies li::before,
.process-list li::before {
  content: counter(item, decimal-leading-zero);
  display: flex;
  align-items: center;
  align-self: start;
  justify-content: center;
  margin-top: 0.55em;
  color: #ffffff;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.services {
  width: 100%;
  margin: 0;
  padding: 150px 58px 0px 80px;
  overflow: visible;
}

.services > .eyebrow {
  margin-bottom: 0;
}

.services h2.services-intro {
  width: 900px;
  max-width: 100%;
  margin: 20px 0 70px;
  color: var(--white);
  font-family: "Geist", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
}

.service-stack {
  position: relative;
  display: grid;
  gap: 58px;
  padding-bottom: 0;
}

.service-stack::after {
  content: "";
  display: block;
  height: clamp(110px, 18vh, 220px);
}

.service-card {
  position: sticky;
  top: calc(108px + var(--stack-offset, 0px));
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 28px;
  min-height: 360px;
  padding: 28px;
  border: 1px solid #383838;
  border-radius: 12px;
  background: var(--bg);
  transform-origin: center top;
  z-index: var(--card-layer, 1);
}

.service-card:nth-child(1) {
  --stack-offset: 0px;
  --card-layer: 1;
}

.service-card:nth-child(2) {
  --stack-offset: 64px;
  --card-layer: 2;
}

.service-card:nth-child(3) {
  --stack-offset: 128px;
  --card-layer: 3;
}

.service-card:nth-child(4) {
  --stack-offset: 192px;
  --card-layer: 4;
}

.service-art {
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1;
  /*border-radius: 35px; */
 /* background:
    radial-gradient(circle at 50% 72%, rgba(254, 165, 2, 0.28), transparent 26%),
    linear-gradient(145deg, #323232, #111); */
}

.service-business-art {
  border-radius: 35px;
}

.service-art img {
  object-fit: contain;
}

.service-content {
  align-self: center;
}

.service-content h3 {
  margin: 10px 0 14px;
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.service-content span {
  position: absolute;
  top: 28px;
  left: calc(28px + 350px + 28px);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.service-content ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: var(--orange);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-content li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-content li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--orange);
}

.process {
  width: 100%;
  margin: 0;
  padding: 150px 58px 0px 80px;
  grid-template-columns: 1fr;
  align-items: start;
}

.process .section-code {
  grid-column: 1 / -1;
  margin-bottom: 42px;
}

.process > div:first-of-type {
  grid-column: 1 / -1;
  grid-row: 2;
  z-index: 3;
  width: 760px;
  max-width: 58%;
}

.process .asset-frame {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: end;
  margin-right: -58px;
  width: 1019px;
  max-width: 100%;
  height: 646px;
  min-height: 510px;
  border: 0;
}

.process .asset-frame img {
  transform: translateY(10px);
}

.process .asset-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #1b1b1b 0%, rgba(27, 27, 27, 0.58) 18%, rgba(27, 27, 27, 0) 46%);
}

.process-list li {
  position: relative;
  align-items: center;
  padding: 35px 0;
  border-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-list li::before {
  margin-top: 0;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 68px;
  bottom: -20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.process-list li:first-child::after {
  top: 33px;
}

.benefits {
  width: 100%;
  margin: 0;
  padding: 150px 58px 106px 80px;
  grid-template-columns: 1fr 1fr;
  row-gap: 50px;
}

.benefits .section-code {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefit-grid article {
  min-height: 132px;
  display: grid;
  align-content: end;
  padding: 0;
}

.benefit-placeholder {
  width: 193px;
  height: 193px;
  position: relative;
  min-height: 193px;
  padding: 0;
  overflow: hidden;
  /*border-radius: 35px;*/
  /*background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #2b2b2b; */
}

.benefit-placeholder::before,
.benefit-placeholder::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.benefit-placeholder::before {
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.benefit-placeholder::after {
  left: 50%;
  top: 50%;
  width: 42px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  transform: translate(-50%, -50%);
  box-shadow: inset 11px 11px 0 -8px rgba(254, 165, 2, 0.85);
}

.benefit-placeholder:has(img)::before,
.benefit-placeholder:has(img)::after {
  content: none;
}

.benefit-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.benefit-grid span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.benefit-grid strong {
  margin-top: 10px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.15;
}

.contact {
  position: relative;
  width: 100%;
  margin: 0;
  align-items: stretch;
  padding: 106px 82px 92px 104px;
  border: 0;
  background: transparent;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 82px 58px 68px 80px;
  z-index: 0;
  border: 1px solid #373737;
  border-radius: 14px;
  background: var(--panel);
  pointer-events: none;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact-code {
  position: absolute;
  left: 80px;
  top: 8px;
  margin: 0;
}

.contact p:not(.eyebrow):not(.section-code) {
  width: 604px;
  max-width: 100%;
}

form {
  display: grid;
  gap: 12px;
}

form label {
  display: grid;
  gap: 8px;
  padding: 14px 18px 16px;
  border: 1px solid #414141;
  border-radius: 12px;
  color: #a8a8aa;
  background: #2c2c2c;
  font-size: 12px;
  font-weight: 700;
}

form label span {
  color: #ffffff;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

form input,
form textarea {
  width: 100%;
  min-height: 24px;
  padding: 0;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  font-family: "Geist", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  resize: vertical;
}

form input::placeholder,
form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  font-family: "Geist", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form input:-webkit-autofill:active {
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
  box-shadow: 0 0 0 1000px #2c2c2c inset;
  transition: background-color 9999s ease-out 0s;
}

form input:autofill {
  color: #ffffff;
  caret-color: #ffffff;
}

form textarea {
  min-height: 72px;
}

.form-note {
  margin: 8px 0;
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.site-footer {
  display: grid;
  grid-template-columns: 320px 116px 324px max-content;
  gap: clamp(34px, 5vw, 86px);
  justify-content: space-between;
  align-items: start;
  margin-top: 80px;
  padding: 0 88px 74px;
  background: #222222;
}

.footer-column {
  display: grid;
  gap: 12px;
  padding-top: 27px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.1em;
  font-style: normal;
}

.site-footer nav.footer-column a {
  color: #ffffff;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.1em;
}

.footer-column h2 {
  margin: 0 0 2px;
  color: var(--orange);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  color: inherit;
}

.footer-brand {
  width: 320px;
}

.footer-brand p {
  margin: 12px 0 0;
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
}

.footer-column address,
address.footer-column {
  color: rgba(255, 255, 255, 0.38);
  justify-self: end;
  width: max-content;
}

address.footer-column a {
  font-family: "Geist", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.footer-logo {
  width: 320px;
  height: 185px;
  object-fit: contain;
}

/*.is-visible {
  outline: 1px solid rgba(254, 165, 2, 0.12);
} */

@media (max-width: 940px) {
  .site-header {
    --header-line-offset: 27px;
    min-height: 72px;
    padding: 0 28px;
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 32px;
    padding: 6px 4px;
    border: 0;
    color: var(--orange);
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .desktop-nav {
    display: none;
  }

  .site-header.is-menu-open .desktop-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    gap: 0;
    padding: 14px 28px 20px;
    /*border-top: 1px solid rgba(254, 165, 2, 0.45); */
    border-bottom: 1px solid var(--orange);
    background: rgba(27, 27, 27, 0.98);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
  }

  .site-header.is-menu-open .desktop-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .site-header.is-menu-open .desktop-nav a:last-child {
    border-bottom: 0;
  }

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

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

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

  .phone span {
    display: none;
  }

  .phone,
  .phone img {
    width: 24px;
    height: 24px;
  }

  .section {
    width: 100%;
    padding: 72px 28px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 28px 64px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-actions {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    order: 3;
    justify-self: center;
    width: min(620px, 100%);
    height: auto;
    aspect-ratio: 1.64;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(54px, 11vw, 84px);
  }

  .lead {
    width: min(590px, 100%);
    margin: 8px 0 30px;
    font-size: clamp(22px, 4vw, 34px);
  }

  .hero-points {
    gap: 14px;
    margin-left: 0;
    font-size: 18px;
  }

  .hero-points li::before {
    width: 7px;
    height: 7px;
  }

  .btn {
    min-height: 48px;
    height: auto;
    padding: 12px 18px;
    font-size: 15px;
    text-align: center;
  }

  .stats {
    width: 100%;
    margin: 0;
    padding: 0 28px 72px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .stats article {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
    padding: 22px;
  }

  .stats strong,
  .stats span,
  .stats p {
    width: 100%;
  }

  .stats strong {
    margin-bottom: 10px;
  }

  .expert,
  .services,
  .process,
  .benefits {
    width: 100%;
    padding: 72px 28px 0;
  }

  .expert-grid,
  .benefits,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .expert-content {
    order: -1;
    width: 100%;
  }

  .expert-laptop-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 1.71;
    margin-top: 34px;
  }

  .expert h2,
  .process h2,
  .benefits h2,
  .contact h2,
  .services h2.services-intro {
    font-size: clamp(30px, 5vw, 40px);
  }

  .competencies {
    margin-top: 56px;
  }

  .competencies li {
    grid-template-columns: 34px 1fr;
    font-size: clamp(21px, 3.6vw, 30px);
  }

  .services h2.services-intro {
    width: 100%;
    margin: 12px 0 42px;
  }

  .service-stack {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-stack::-webkit-scrollbar {
    display: none;
  }

  .service-stack::after {
    content: none;
  }

  .service-card {
    position: relative;
    top: auto;
    z-index: auto;
    flex: 0 0 calc(100% - 42px);
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 22px;
    scroll-snap-align: start;
  }

  .service-art {
    min-height: 0;
    height: auto;
    aspect-ratio: 1;
    border-radius: 55px;
  }

  .service-content span {
    position: static;
    display: block;
  }

  .service-content h3 {
    font-size: clamp(28px, 5vw, 38px);
  }

  .process {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 820px;
    overflow: hidden;
  }

  .process .section-code {
    grid-row: 1;
  }

  .process > div:first-of-type {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
  }

  .process .asset-frame {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    justify-self: center;
    width: calc(100% + 56px);
    max-width: none;
    height: 650px;
    min-height: 0;
    margin: 170px -28px 0;
  }

  .process .asset-frame::after {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(27, 27, 27, 0.78) 28%, rgba(27, 27, 27, 0.06) 62%, var(--bg) 100%);
  }

  .process-list {
    width: min(560px, 100%);
  }

  .process-list li {
    font-size: clamp(19px, 3.4vw, 24px);
  }

  .benefits {
    display: grid;
    gap: 36px;
    padding-bottom: 72px;
  }

  .benefits .section-code {
    order: 1;
  }

  .benefits > div:not(.benefit-grid) {
    order: 2;
  }

  .benefit-grid {
    order: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .benefit-placeholder {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 22px;
  }

  .contact {
    display: grid;
    gap: 34px;
    width: 100%;
    margin: 0;
    padding: 142px 52px 72px;
  }

  .contact-code {
    left: 28px;
    top: 72px;
  }

  .contact::before {
    inset: 120px 28px 40px;
  }

  form input,
  form textarea,
  form input::placeholder,
  form textarea::placeholder {
    font-size: 20px;
  }

  .site-footer {
    justify-items: center;
    gap: 34px;
    margin-top: 0;
    padding: 52px 28px 72px;
  }

  .footer-brand,
  .footer-column,
  address.footer-column {
    width: min(360px, 100%);
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .footer-logo {
    width: 100%;
    height: auto;
    aspect-ratio: 1.73;
  }

  .footer-brand p {
    text-align: center;
  }

  .footer-column,
  address.footer-column {
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    --header-line-offset: 26px;
    min-height: 60px;
    padding: 0 16px;
  }

  .phone,
  .phone img {
    width: 20px;
    height: 20px;
  }

  .section {
    padding: 56px 16px;
  }

  .hero {
    gap: 24px;
    padding: 28px 16px 42px;
  }

  .hero h1 {
    font-size: clamp(38px, 10.5vw, 52px);
  }

  .lead {
    margin-bottom: 22px;
    font-size: clamp(18px, 5.5vw, 25px);
    line-height: 1.1;
  }

  .hero-points {
    gap: 9px;
    font-size: 14px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero-visual {
    width: 100%;
  }

  .stats {
    padding: 0 16px 56px;
    gap: 10px;
  }

  .stats article {
    padding: 12px;
    border-radius: 14px;
  }

  .stats strong {
    margin-bottom: 5px;
    font-size: clamp(28px, 10vw, 42px);
  }

  .stats span,
  .stats p {
    font-size: clamp(11px, 3.5vw, 15px);
  }

  .expert,
  .services,
  .process,
  .benefits {
    padding: 56px 16px 0;
  }

  .section-code,
  .eyebrow {
    font-size: 11px;
  }

  .expert h2,
  .process h2,
  .benefits h2,
  .contact h2,
  .services h2.services-intro {
    font-size: 24px;
  }

  .expert-content > p:not(.eyebrow),
  .process p:not(.eyebrow):not(.section-code),
  .benefits p:not(.eyebrow):not(.section-code),
  .contact p:not(.eyebrow):not(.section-code),
  .service-content p {
    font-size: 14px;
  }

  .competencies {
    margin-top: 44px;
  }

  .competencies li {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    padding: 14px 0;
    font-size: 16px;
  }

  .competencies li::before,
  .process-list li::before {
    font-size: 12px;
  }

  .services h2.services-intro {
    margin-bottom: 28px;
  }

  .service-card {
    flex-basis: calc(100% - 42px);
    gap: 18px;
    padding: 12px;
    border-radius: 14px;
  }

  .service-art {
    border-radius: 12px;
  }

  .service-content h3 {
    margin: 7px 0 10px;
    font-size: 24px;
  }

  .service-content span,
  .service-content ul {
    font-size: 11px;
  }

  .service-content ul {
    gap: 6px;
    margin-top: 14px;
  }

  .process {
    min-height: 720px;
  }

  .process .asset-frame {
    width: calc(100% + 32px);
    height: 520px;
    margin: 180px -16px 0;
  }

  .process-list li {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    padding: 25px 0;
    font-size: 16px;
  }

  .process-list li:not(:last-child)::after {
    left: 6px;
    top: 48px;
  }

  .benefits {
    gap: 26px;
    padding-bottom: 56px;
  }

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

  .benefit-placeholder {
    border-radius: 14px;
  }

  .contact {
    gap: 24px;
    padding: 116px 28px 56px;
  }

  .contact p:not(.eyebrow):not(.section-code) {
    width: 280px;
    max-width: 100%;
  }

  .contact-code {
    left: 16px;
    top: 56px;
  }

  .contact::before {
    inset: 96px 8px 32px;
    border-radius: 18px;
  }

  form label {
    padding: 10px 12px 12px;
  }

  form label span {
    font-size: 11px;
  }

  form input,
  form textarea,
  form input::placeholder,
  form textarea::placeholder {
    font-size: 14px;
  }

  .form-note {
    font-size: 12px;
  }

  .site-footer {
    gap: 28px;
    padding: 42px 16px 64px;
  }

  .footer-brand {
    width: min(270px, 100%);
  }

  .footer-brand p,
  .site-footer nav.footer-column a,
  address.footer-column a {
    font-size: 12px;
  }

  .footer-column,
  .footer-column h2 {
    font-size: 11px;
  }
}
