/* ValeMind — shared, mobile-first design system. */
:root {
  --ink: #0b2240;
  --muted: #576579;
  --cyan: #007f9e;
  --bright: #00afcf;
  --line: #e0e7ec;
  --soft: #f5f8fa;
  --font: 'Plus Jakarta Sans', Arial, sans-serif;
  --heading: 'Outfit', Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font: 15px/1.7 var(--font);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(46px, 7vw, 88px);
}
h2 {
  font-size: clamp(32px, 4vw, 46px);
}
h3 {
  font-size: 22px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
svg {
  flex-shrink: 0;
}
p {
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
html:not(.js) #contact-form {
  display: none;
}
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}
::selection {
  background: #c6f3f7;
  color: var(--ink);
}
.container {
  width: min(1184px, calc(100% - 40px));
  margin-inline: auto;
}
.icon {
  width: 22px;
  height: 22px;
}
.accent {
  color: var(--cyan);
}
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: var(--ink);
  color: white;
  padding: 15px 23px;
  min-height: 50px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #173e61;
  transform: translateY(-2px);
}
.button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.button-secondary {
  background: white;
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  background: none;
  border: 0;
  padding: 0;
}
.text-link:hover {
  color: var(--cyan);
}
.text-link .icon {
  width: 18px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.brand img {
  width: 46px;
  height: auto;
}
.brand > span {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -1px;
}
.brand-mind {
  font-weight: 400;
}
.brand-dot {
  color: var(--cyan);
}
#navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  width: 100%;
  font-size: 13px;
}
#navigation > a:not(.button) {
  padding: 10px 0;
  color: var(--muted);
}
#navigation > a:hover,
#navigation > [aria-current] {
  color: var(--ink) !important;
}
#navigation > [aria-current]:not(.button) {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: var(--bright);
}
.menu-toggle {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font-size: 13px;
}
.menu-toggle span {
  margin-left: 8px;
}
.js #navigation:not(.open) {
  display: none;
}
.js #navigation.open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 10px 0 24px;
}
.nav-cta {
  font-size: 12px;
}
.hero {
  padding-top: 50px;
  padding-bottom: 54px;
  display: grid;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.hero .eyebrow {
  font-size: 10px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--bright);
  box-shadow: 0 0 0 4px #e8f7f9;
  flex-shrink: 0;
}
.hero-copy > p {
  max-width: 450px;
  font-size: 16px;
  line-height: 1.85;
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 30px;
  align-items: center;
}
.hero-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  font-size: 10px;
  color: var(--muted);
}
.tiny-line {
  height: 1px;
  width: 22px;
  background: #7b8b9a;
}
.hero-scene {
  width: 100%;
  min-width: 0;
  max-width: 560px;
  justify-self: center;
  overflow: hidden;
  position: relative;
  border-radius: 22px;
  color: #e9f5ff;
  background: #081a2a;
  border: 1px solid #193548;
  box-shadow: 0 24px 60px -34px #071f415c;
  isolation: isolate;
}
.hero-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 40%, #123c4b 0%, transparent 64%);
  pointer-events: none;
}
.scene-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 20px 22px 0;
  min-height: 62px;
}
.scene-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aecbd8;
}
.scene-kicker i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #69dae5;
  box-shadow: 0 0 12px #69dae580;
}
.scene-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 8px;
  color: #c2d9e3;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 10px;
}
.scene-pause:hover {
  background: #ffffff0c;
  border-color: #ffffff24;
}
.scene-pause svg {
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}
.scene-pause .play-symbol {
  display: none;
}
.scene-pause[aria-pressed='true'] .pause-symbol {
  display: none;
}
.scene-pause[aria-pressed='true'] .play-symbol {
  display: block;
}
.scene-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1.42;
  min-height: 230px;
}
.scene-stage canvas,
.scene-fallback {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  display: block;
  pointer-events: none;
}
.scene-stage canvas {
  opacity: 0;
}
.scene-ready .scene-stage canvas {
  opacity: 1;
}
.scene-ready .scene-fallback {
  visibility: hidden;
}
.scene-coordinate {
  position: absolute;
  bottom: 8px;
  left: 26px;
  color: #8eabb9;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}
.scene-hint {
  position: absolute;
  bottom: 8px;
  right: 26px;
  color: #a0becb;
  font-size: 9px;
}
.scene-hint span {
  color: #6adddf;
  margin-left: 6px;
}
.scene-bottom {
  padding: 20px 26px 28px;
}
.scene-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid #ffffff18;
  background: #04121c66;
  border-radius: 9px;
}
.scene-controls button {
  min-height: 44px;
  padding: 8px 4px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #a9c6d3;
  font-size: 11px;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.scene-controls button:hover {
  color: #fff;
  background: #ffffff08;
}
.scene-controls button[aria-pressed='true'] {
  background: #183744;
  border-color: #6fd4e22e;
  color: #b2f3f6;
  box-shadow: 0 2px 7px #0000001a;
}
.hero-scene :focus-visible {
  outline-color: #96e9f2;
  outline-offset: 3px;
}
.scene-caption {
  margin-top: 20px;
  min-height: 62px;
}
.scene-caption .scene-title {
  color: #f0f7fa;
  font-size: clamp(19px, 2vw, 23px);
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.scene-description {
  color: #adc5d1;
  font-size: 11px;
  line-height: 1.65;
  margin-top: 7px;
}
@media (max-width: 380px) {
  .scene-header {
    padding-inline: 15px;
  }
  .scene-kicker {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .scene-pause span {
    display: none;
  }
  .scene-bottom {
    padding-inline: 18px;
  }
  .scene-coordinate {
    left: 18px;
  }
  .scene-hint {
    right: 18px;
    font-size: 8px;
  }
}
.problems-section {
  padding: 56px 0;
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.section-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 32px;
}
.section-heading .eyebrow {
  margin-bottom: 14px;
}
.section-heading > p {
  max-width: 390px;
  font-size: 14px;
}
.problem-grid {
  display: grid;
  gap: 0;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  transition: color 0.2s;
}
.problem-icon {
  color: var(--cyan);
  margin-top: 2px;
}
.problem-item h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.problem-item p {
  font-size: 12px;
  line-height: 1.7;
  max-width: 265px;
}
.problem-arrow {
  margin-left: auto;
  align-self: center;
  color: #657c8a;
  transition: transform 0.2s;
}
.problem-arrow .icon {
  width: 18px;
}
.problem-item:hover h3 {
  color: var(--cyan);
}
.problem-item:hover .problem-arrow {
  transform: translateX(4px);
}
.contact-section {
  padding: 64px 0;
}
.contact-layout {
  display: grid;
  gap: 35px;
  align-items: start;
}
.contact-intro {
  padding-top: 6px;
}
.contact-intro > p {
  max-width: 370px;
  font-size: 14px;
  margin-top: 22px;
  line-height: 1.85;
}
.contact-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 16px;
  color: var(--muted);
  font-size: 12px;
}
.contact-note > .icon {
  color: var(--cyan);
  width: 26px;
  height: 26px;
}
.contact-intro > .text-link {
  font-size: 12px;
}
.form-card {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 8px 32px #0b224005;
  min-width: 0;
}
.form-progress {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}
#step-count {
  color: var(--cyan);
}
.progress-track {
  height: 3px;
  background: #edf2f5;
  border-radius: 3px;
  margin: 14px 0 27px;
  overflow: hidden;
}
.progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--bright);
  transition: width 0.3s;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
legend {
  font-family: var(--heading);
  font-size: 23px;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 10px;
  padding: 0;
  width: 100%;
}
.field-hint {
  font-size: 11px;
  margin: 0 0 20px;
  line-height: 1.7;
}
.need-options {
  display: grid;
  gap: 8px;
}
.need-option {
  display: flex;
  align-items: center;
  position: relative;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  gap: 11px;
  font-size: 12px;
  min-height: 46px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.need-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.need-option:has(input:checked) {
  background: #edf9fb;
  border-color: var(--cyan);
  color: var(--ink);
}
.need-option:has(input:focus-visible) {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}
.option-check {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid #a9b8c1;
  border-radius: 50%;
  flex-shrink: 0;
}
.option-check .icon {
  width: 11px;
  height: 11px;
  opacity: 0;
}
.need-option:has(input:checked) .option-check {
  background: var(--cyan);
  border-color: var(--cyan);
  color: white;
}
.need-option:has(input:checked) .icon {
  opacity: 1;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}
.next-button {
  margin-left: auto;
}
.back-button {
  min-height: 44px;
  background: none;
  border: 0;
  font-size: 12px;
  color: var(--muted);
}
.form-error {
  color: #a42c29;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 12px;
}
.form-error:empty {
  display: none;
}
label:not(.need-option),
.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin: 12px 0 7px;
}
label span {
  font-weight: 400;
}
input:not([type='radio']),
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #b9c6cf;
  background: white;
  border-radius: 6px;
  color: var(--ink);
  padding: 12px;
  font-size: 16px;
  line-height: 1.6;
}
textarea {
  resize: vertical;
  min-height: 140px;
}
input::placeholder,
textarea::placeholder {
  color: #6b7889;
  font-size: 13px;
}
[aria-invalid='true'] {
  border-color: #a42c29 !important;
}
.field-grid {
  display: grid;
  gap: 6px 16px;
}
.privacy-note,
.delivery-note {
  font-size: 10px;
  line-height: 1.8;
  margin-top: 20px;
}
.delivery-note {
  color: var(--cyan);
  margin-top: 12px;
}
.form-result {
  padding: 24px 0;
}
.result-icon {
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: #e9f7f9;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
}
.form-result h3 {
  font-size: 30px;
}
.form-result p {
  font-size: 13px;
  margin: 16px 0;
}
.form-result .button {
  margin: 10px 0;
}
.form-result > .text-link {
  margin-top: 22px;
}
details {
  margin-top: 20px;
  font-size: 12px;
}
summary {
  cursor: pointer;
  min-height: 44px;
}
details textarea {
  font-size: 12px;
  margin-bottom: 12px;
}
noscript p {
  font-size: 13px;
  padding: 15px;
  background: var(--soft);
}
.closing {
  text-align: center;
  padding: 35px 0 65px;
}
.closing .eyebrow {
  font-size: 9px;
}
.closing p {
  font: 500 clamp(28px, 4vw, 42px)/1.2 var(--heading);
  letter-spacing: -0.035em;
  color: var(--ink);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  padding-bottom: 30px;
}
.footer-top > .brand > span {
  font-size: 23px;
}
.footer-top > .brand img {
  width: 40px;
}
.footer-top > p {
  font-size: 11px;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
}
.footer-top nav a {
  padding-block: 10px;
}
.footer-email {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.footer-email > .icon {
  width: 16px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom > span:last-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-bottom .icon {
  width: 14px;
  height: 14px;
}
.site-footer a:hover {
  color: var(--cyan);
}
.page-intro {
  padding-top: 64px;
  padding-bottom: 50px;
}
.page-intro h1 {
  font-size: clamp(43px, 6vw, 72px);
  max-width: 920px;
}
.page-intro > p {
  margin-top: 26px;
  max-width: 600px;
  font-size: 16px;
}
.page-intro .button {
  margin-top: 28px;
}
.service-row {
  border-top: 1px solid var(--line);
  padding: 35px 0;
  display: grid;
  gap: 20px;
}
.service-number {
  font-size: 12px;
  color: var(--cyan);
}
.service-icon {
  color: var(--cyan);
}
.service-description h2 {
  font-size: 28px;
  margin: 10px 0 18px;
  max-width: 450px;
}
.service-description p {
  font-size: 14px;
  max-width: 490px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  align-content: center;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-list .icon {
  width: 17px;
  height: 17px;
  color: var(--cyan);
}
.tech-section,
.working-section {
  background: var(--soft);
  padding: 55px 0;
  margin-top: 20px;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.tech-grid > div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.tech-grid h3 {
  font-size: 19px;
}
.tech-grid p {
  font-size: 11px;
  margin-top: 10px;
}
.internal-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-block: 70px;
}
.internal-cta h2 {
  font-size: 32px;
}
.internal-cta .eyebrow {
  margin-bottom: 14px;
}
.about-statement {
  display: grid;
  gap: 30px;
  align-items: center;
  padding-bottom: 55px;
}
.statement-mark {
  display: grid;
  place-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 260px;
}
.statement-mark img {
  width: 160px;
  mix-blend-mode: multiply;
}
.about-statement h2 {
  font-size: 32px;
}
.about-statement p {
  margin-top: 20px;
  font-size: 14px;
  max-width: 550px;
}
.working-grid {
  display: grid;
  gap: 32px;
  margin-top: 38px;
}
.working-grid article > span {
  color: var(--cyan);
  font-size: 12px;
  display: block;
  margin-bottom: 20px;
}
.working-grid h3 {
  font-size: 23px;
  margin-bottom: 16px;
}
.working-grid p {
  font-size: 13px;
}
.project-case {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  padding: 38px 0;
}
.project-visual {
  position: relative;
  padding: 28px;
  background: #edf6f8;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  overflow: hidden;
}
.visual-1 {
  background: #f0f1f8;
}
.visual-2 {
  background: #eef5f1;
}
.project-visual .eyebrow {
  font-size: 9px;
}
.project-visual > small {
  color: var(--muted);
  font-size: 9px;
  margin-top: 22px;
}
.project-diagram {
  align-self: center;
  background: white;
  border: 1px solid #dbe5eb;
  padding: 25px 30px;
  border-radius: 12px;
  min-width: 200px;
  box-shadow: 0 15px 35px #0b224008;
}
.project-diagram > .icon {
  width: 34px;
  height: 34px;
  color: var(--cyan);
}
.project-diagram > span {
  display: block;
  font: 500 26px var(--heading);
  margin: 10px 0;
}
.diagram-lines {
  display: flex;
  gap: 6px;
}
.diagram-lines i {
  height: 5px;
  width: 35px;
  background: #b6d9e2;
  border-radius: 2px;
}
.diagram-lines i:nth-child(2) {
  background: #d6e7ee;
}
.case-content h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.case-content h3 {
  font: 600 12px var(--font);
  letter-spacing: 0;
  margin: 20px 0 8px;
}
.case-content p {
  font-size: 13px;
}
.case-outcome {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  color: var(--ink);
}
.case-outcome .icon {
  width: 17px;
  height: 22px;
  color: var(--cyan);
}
.tags {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  margin: 22px 0 0;
}
.tags li {
  font-size: 10px;
  padding: 5px 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-block: 24px;
  border-block: 1px solid var(--line);
}
.contact-channels > a,
.contact-channels > div {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
}
.contact-channels .icon {
  color: var(--cyan);
}
.contact-channels small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.contact-channels > a > span {
  overflow-wrap: anywhere;
}
@media (min-width: 600px) {
  .container {
    width: min(1184px, calc(100% - 64px));
  }
  .hero {
    padding-block: 65px;
  }
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
  .form-card {
    padding: 30px;
  }
  .field-grid {
    grid-template-columns: 1fr 1fr;
  }
  .working-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top nav {
    margin-left: auto;
  }
  .footer-email {
    margin-left: auto;
  }
}
@media (min-width: 1000px) {
  .header-inner {
    min-height: 88px;
    flex-wrap: nowrap;
  }
  .menu-toggle {
    display: none !important;
  }
  #navigation,
  .js #navigation:not(.open),
  .js #navigation.open {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 27px;
    padding: 0;
    width: auto;
  }
  .nav-cta {
    margin-left: 16px;
    padding: 12px 18px;
  }
  .hero {
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    padding-top: 72px;
    padding-bottom: 76px;
  }
  .hero h1 {
    font-size: 80px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .hero-actions {
    gap: 22px;
  }
  .hero-actions .button {
    padding-inline: 20px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 34px;
  }
  .problem-item {
    padding-block: 26px;
  }
  .problems-section {
    padding-block: 54px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .contact-section {
    padding-block: 82px;
  }
  .contact-layout {
    grid-template-columns: 1fr 1.08fr;
    gap: 95px;
  }
  .contact-intro {
    padding-top: 25px;
  }
  .contact-intro h2 {
    font-size: 48px;
  }
  .form-card {
    padding: 32px;
  }
  .need-options {
    grid-template-columns: 1fr 1fr;
  }
  .need-option:last-child {
    grid-column: 1/-1;
  }
  .need-option {
    padding: 13px 12px;
    font-size: 11px;
  }
  .form-card {
    min-height: 434px;
  }
  .closing {
    padding: 22px 0 76px;
  }
  .footer-top {
    gap: 28px;
  }
  .footer-top nav {
    gap: 23px;
  }
  .footer-email {
    margin-left: 0;
  }
  .service-row {
    grid-template-columns: 60px 1.4fr 1fr;
    gap: 35px;
    padding-block: 44px;
  }
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
  .about-statement {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
  }
  .working-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  .project-case {
    grid-template-columns: 1fr 1.1fr;
    gap: 65px;
    padding-block: 50px;
  }
  .project-visual {
    min-height: 380px;
  }
  .contact-channels {
    gap: 80px;
  }
  .page-intro {
    padding-top: 80px;
    padding-bottom: 65px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .step-enter {
    animation: step-enter 0.25s ease-out;
  }
  @keyframes step-enter {
    from {
      opacity: 0.3;
      transform: translateX(8px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
