:root {
  --ink: #071014;
  --ink-soft: #13252c;
  --paper: #ffffff;
  --mist: #f3f8fa;
  --line: rgba(7, 16, 20, 0.12);
  --teal: #18d4bd;
  --blue: #1478e8;
  --green: #8ff0b8;
  --gold: #f3b84b;
  --shadow: 0 24px 60px rgba(7, 16, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 16, 20, 0.88);
  color: var(--paper);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-lockup img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-header .brand-lockup .nav-logo {
  width: auto;
  height: clamp(86px, 7vw, 108px);
  filter: saturate(1.16) brightness(1.08) drop-shadow(0 0 14px rgba(24, 212, 189, 0.28));
}

.brand-lockup strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lockup small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--paper);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--paper);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  min-height: calc(100vh - 81px);
  padding: clamp(52px, 7vw, 110px) clamp(18px, 5vw, 82px) 64px;
  background:
    linear-gradient(120deg, rgba(7, 16, 20, 0.95), rgba(19, 37, 44, 0.9)),
    radial-gradient(circle at 75% 28%, rgba(20, 120, 232, 0.34), transparent 34%),
    var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 500px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.96;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(5, 96px);
  gap: 14px;
  min-height: 0;
  isolation: isolate;
}

.hero-visual img {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-main {
  grid-column: 3 / 7;
  grid-row: 1 / 5;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-side {
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-side.top {
  grid-column: 1 / 3;
  grid-row: 1 / 5;
  object-position: center center;
  z-index: 4;
}

.hero-side.bottom {
  grid-column: 5 / 7;
  grid-row: 4 / 6;
}

.proof-note {
  grid-column: 1 / 5;
  grid-row: 4 / 6;
  align-self: end;
  max-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(7, 16, 20, 0.82);
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  z-index: 3;
}

.proof-note strong {
  color: var(--paper);
}

@media (max-height: 760px) and (min-width: 1081px) {
  .site-header {
    padding-block: 10px;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
  }

  .site-header .brand-lockup .nav-logo {
    width: auto;
    height: 78px;
  }

  .header-cta,
  .button {
    min-height: 40px;
    padding-inline: 16px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    gap: clamp(40px, 5.5vw, 74px);
    height: calc(100vh - 73px);
    min-height: calc(100vh - 73px);
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }

  h1 {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 4.9vw, 4.85rem);
    line-height: 0.98;
  }

  .hero-text {
    max-width: 570px;
    font-size: clamp(1.06rem, 1.58vw, 1.23rem);
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-visual {
    grid-template-rows: repeat(5, minmax(0, 96px));
    gap: 12px;
    align-self: center;
  }

  .proof-note {
    max-width: 350px;
    padding: 16px;
    font-size: 0.98rem;
  }
}

section {
  scroll-margin-top: 118px;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 82px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(7, 16, 20, 0.66);
  font-size: 1.08rem;
  font-weight: 600;
}

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

.social-proof {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(7, 16, 20, 0.08);
}

.testimonial-card.feature {
  grid-row: auto;
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.testimonial-card.feature img {
  aspect-ratio: 4 / 3;
}

.testimonial-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.testimonial-card p {
  flex: 1;
  color: rgba(7, 16, 20, 0.72);
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-card span,
.quote-wall h3,
.client-gallery figcaption {
  color: rgba(7, 16, 20, 0.55);
  font-size: 0.82rem;
  font-weight: 800;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.value-band div {
  min-height: 176px;
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
}

.value-band span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-band strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.28rem, 2.5vw, 2.2rem);
  line-height: 1;
}

.process {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 250, 247, 0.9)),
    linear-gradient(135deg, rgba(24, 212, 189, 0.1), transparent 42%),
    #eef8fb;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, 0.46) 28% 29%, transparent 29% 100%),
    linear-gradient(90deg, transparent 0 49%, rgba(7, 16, 20, 0.018) 49% 51%, transparent 51% 100%);
  background-size: 180px 180px, 96px 96px;
  opacity: 0.62;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-list::before,
.process-list::after {
  content: "";
  position: absolute;
  top: 52px;
  right: 14%;
  left: 14%;
  height: 3px;
  border-radius: 999px;
}

.process-list::before {
  background: rgba(69, 128, 143, 0.14);
}

.process-list::after {
  background: linear-gradient(90deg, rgba(143, 240, 184, 0.78), rgba(24, 212, 189, 0.72), rgba(20, 120, 232, 0.52));
  box-shadow: 0 0 18px rgba(24, 212, 189, 0.18);
  transform: scaleX(0);
  transform-origin: left;
}

.process-list article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 250, 0.94)),
    var(--paper);
  box-shadow: 0 18px 42px rgba(31, 87, 99, 0.08);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease, background 320ms ease;
}

.process-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(143, 240, 184, 0.16), transparent 46%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.process-list article:hover,
.process-list article:focus-within {
  transform: translateY(-4px);
  border-color: rgba(24, 212, 189, 0.24);
  box-shadow: 0 24px 52px rgba(31, 87, 99, 0.12);
}

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

.process-list span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border: 1px solid rgba(24, 212, 189, 0.32);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #e8f7f5);
  color: #087a88;
  font-weight: 900;
  box-shadow: 0 0 0 10px rgba(24, 212, 189, 0.08), 0 14px 28px rgba(31, 87, 99, 0.12);
}

.process-list p {
  color: rgba(7, 16, 20, 0.64);
  font-weight: 650;
}

.process:not(.is-visible) .section-heading,
.process:not(.is-visible) .process-list article {
  opacity: 0;
  transform: translateY(28px);
}

.process.is-visible .section-heading {
  animation: processFadeUp 860ms ease both;
}

.process.is-visible .process-list::after {
  animation: processLine 1400ms 320ms ease-out both;
}

.process.is-visible .process-list article {
  animation: processFadeUp 900ms ease both;
}

.process.is-visible .process-list article:nth-child(1) {
  animation-delay: 160ms;
}

.process.is-visible .process-list article:nth-child(2) {
  animation-delay: 320ms;
}

.process.is-visible .process-list article:nth-child(3) {
  animation-delay: 480ms;
}

.process.is-visible .process-list span {
  animation: stepPulse 2600ms ease-in-out infinite;
}

.process.is-visible .process-list article:nth-child(2) span {
  animation-delay: 260ms;
}

.process.is-visible .process-list article:nth-child(3) span {
  animation-delay: 520ms;
}

@keyframes processFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes processLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes stepPulse {
  0%,
  100% {
    box-shadow: 0 0 0 10px rgba(24, 212, 189, 0.08), 0 14px 28px rgba(31, 87, 99, 0.12);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(143, 240, 184, 0.1), 0 18px 32px rgba(31, 87, 99, 0.14);
  }
}

@keyframes processLineVertical {
  to {
    transform: scaleY(1);
  }
}

.gallery-section {
  background: var(--paper);
}

.client-gallery {
  columns: 5 210px;
  column-gap: 14px;
}

.client-gallery figure {
  position: relative;
  break-inside: avoid;
  overflow: hidden;
  margin: 0 0 14px;
  border-radius: 8px;
  background: var(--ink);
}

.client-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.client-gallery figure:hover img {
  transform: scale(1.035);
}

.client-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: 6px;
  padding: 9px 10px;
  background: rgba(7, 16, 20, 0.78);
  color: var(--paper);
}

.partners {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--mist);
}

.partners-copy p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(7, 16, 20, 0.66);
  font-size: 1.08rem;
  font-weight: 650;
}

.partners img {
  width: min(100%, 560px);
  justify-self: center;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(7, 16, 20, 0.12);
}

.quote-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(7, 16, 20, 0.98), rgba(19, 37, 44, 0.96)),
    var(--ink);
  color: var(--paper);
}

.quote-wall-heading {
  grid-column: 1 / -1;
  max-width: 880px;
  margin-bottom: 12px;
}

.quote-wall-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
}

.quote-wall article {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.quote-wall article::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(24, 212, 189, 0.18);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.quote-wall p {
  flex: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  font-weight: 750;
  line-height: 1.35;
}

.quote-wall h3 {
  margin-bottom: 4px;
  color: var(--teal);
}

.quote-wall footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-wall footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
}

.consultation {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(7, 16, 20, 0.96), rgba(19, 37, 44, 0.94)),
    var(--ink);
  color: var(--paper);
}

.consultation-copy {
  position: sticky;
  top: 120px;
}

.consultation-copy p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  font-weight: 650;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.06);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin-bottom: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(18px, 5vw, 82px);
  background: #03080a;
  color: var(--paper);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 650;
}

.footer-brand img {
  width: 46px;
  height: 46px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding-block: 10px;
  }

  .site-header .brand-lockup .nav-logo {
    height: 74px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(2.55rem, 7vw, 4.6rem);
  }

  .hero-visual {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(4, 86px);
  }

  .hero-main {
    grid-column: 3 / 7;
    grid-row: 1 / 5;
  }

  .hero-side.top {
    grid-column: 1 / 3;
    grid-row: 1 / 4;
  }

  .hero-side.bottom {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
  }

  .proof-note {
    grid-column: 3 / 6;
    grid-row: 4 / 5;
    align-self: end;
  }

  .testimonial-grid,
  .quote-wall {
    grid-template-columns: 1fr;
  }

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

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list::before,
  .process-list::after {
    top: 36px;
    bottom: 36px;
    left: 52px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .process-list::after {
    transform: scaleY(0);
    transform-origin: top;
  }

  .process.is-visible .process-list::after {
    animation-name: processLineVertical;
  }

  .testimonial-card.feature {
    grid-row: auto;
  }

  .testimonial-card.feature img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 820px) {
  section {
    scroll-margin-top: 96px;
    padding-block: clamp(54px, 10vw, 78px);
  }

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

  .site-header .brand-lockup .nav-logo {
    height: 68px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4.4rem);
  }

  h2,
  .quote-wall-heading h2 {
    font-size: clamp(2rem, 9vw, 3.3rem);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-side {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .proof-note {
    grid-column: 1 / -1;
    grid-row: auto;
    max-width: none;
  }

  .value-band,
  .partners,
  .consultation,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .consultation-copy {
    position: static;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .quote-wall {
    gap: 14px;
  }

  .quote-wall article {
    min-height: auto;
    padding: 22px;
  }

  .quote-wall article::before {
    top: 16px;
    right: 18px;
    font-size: 4rem;
  }

  .review-meta {
    margin-bottom: 18px;
  }

  .quote-wall p {
    font-size: 1.03rem;
    line-height: 1.42;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
  }

  .site-header .brand-lockup .nav-logo {
    width: auto;
    height: 58px;
  }

  .brand-lockup strong {
    font-size: 0.98rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .proof-note {
    max-width: none;
  }

  .process-list article {
    min-height: 220px;
  }

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

  section {
    padding-inline: 14px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  h2,
  .quote-wall-heading h2 {
    font-size: clamp(1.92rem, 8.8vw, 2.8rem);
  }

  .value-band div,
  .process-list article,
  .quote-wall article {
    padding: 20px;
  }

  .process-list::before,
  .process-list::after {
    left: 44px;
  }

  .process-list span {
    width: 44px;
    height: 44px;
  }

  .partners img {
    width: 100%;
  }

  .client-gallery {
    columns: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process .section-heading,
  .process .process-list article,
  .process .process-list span,
  .process .process-list::after {
    animation: none !important;
    transition: none !important;
  }

  .process:not(.is-visible) .section-heading,
  .process:not(.is-visible) .process-list article {
    opacity: 1;
    transform: none;
  }

  .process-list::after {
    transform: none;
  }
}
