.vs-portfolio {
  overflow: hidden;
  padding-top: 64px;
  background: #fff;
  color: #000;
}

.vs-portfolio__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vs-portfolio h2 {
  margin: 0 0 32px;
  font-family: var(--vs-font-display);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

.vs-portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 95vw;
  margin-bottom: 32px;
}

.vs-portfolio__filter {
  flex-shrink: 0;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
}

.vs-portfolio__filter.is-active {
  border-color: #000;
  background: #000;
  color: #fff;
}

.vs-portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.vs-portfolio__actions {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.vs-portfolio__all-link,
.vs-portfolio__load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.vs-portfolio__all-link:hover,
.vs-portfolio__all-link:focus-visible,
.vs-portfolio__load-more:hover,
.vs-portfolio__load-more:focus-visible {
  background: #fff;
  color: #000;
}

.vs-portfolio-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-right: 1px solid rgb(0 0 0 / 0.1);
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
  background: #111;
  color: #fff;
}

.vs-portfolio-card[hidden] {
  display: none;
}

.vs-portfolio-card figure {
  margin: 0;
}

.vs-portfolio-card img,
.vs-portfolio-card__overlay {
  position: absolute;
  inset: 0;
}

.vs-portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.5s, transform 0.5s;
}

.vs-portfolio-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.vs-portfolio-card__corners {
  position: absolute;
  inset: 24px;
  z-index: 4;
  pointer-events: none;
}

.vs-portfolio-card__corners span {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: #fff;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}

.vs-portfolio-card__corners span:nth-child(1) {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: translate(16px, 16px);
}

.vs-portfolio-card__corners span:nth-child(2) {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: translate(-16px, 16px);
}

.vs-portfolio-card__corners span:nth-child(3) {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
  transform: translate(16px, -16px);
}

.vs-portfolio-card__corners span:nth-child(4) {
  right: 0;
  bottom: 0;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: translate(-16px, -16px);
}

.vs-portfolio-card:hover .vs-portfolio-card__corners span {
  opacity: 1;
  transform: translate(0, 0);
}

.vs-portfolio-card__overlay {
  background: linear-gradient(to top, rgb(0 0 0 / 0.8), transparent 55%);
  pointer-events: none;
}

.vs-portfolio-card__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgb(0 0 0 / 0);
  color: #fff;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s;
}

.vs-portfolio-card:hover .vs-portfolio-card__play {
  opacity: 1;
  background: rgb(0 0 0 / 0.4);
}

.vs-portfolio-card__play svg {
  width: 64px;
  height: 64px;
  padding: 18px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.5);
  fill: currentColor;
}

.vs-portfolio-card__content {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  pointer-events: none;
}

.vs-portfolio-card__content p {
  margin: 0 0 6px;
  color: #ccc;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.vs-portfolio-card__content h3 {
  max-width: 85%;
  margin: 0;
  font-family: var(--vs-font-display);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

@media (min-width: 768px) {
  .vs-portfolio {
    padding-top: 128px;
  }

  .vs-portfolio__filters {
    margin-bottom: 64px;
  }

  .vs-portfolio__filter {
    padding: 12px 24px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

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

@media (min-width: 1024px) {
  .vs-portfolio__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.vs-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: #fff;
  color: #000;
}

.vs-section--dark {
  background: #0a0a0a;
  color: #fff;
}

.vs-workflow {
  overflow: visible;
}

.vs-section h2,
.vs-section h3,
.vs-section h4,
.vs-cta h2 {
  font-family: var(--vs-font-display);
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

.vs-section__center {
  margin: 0 auto 64px;
  text-align: center;
}

.vs-section__center h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.vs-section__split,
.vs-section__grid,
.vs-budget__grid,
.vs-calculator__grid,
.vs-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.vs-section__grid {
  position: relative;
  z-index: 2;
}

.vs-section__subhead {
  margin: 0 0 48px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.vs-eyebrow {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 4px 12px;
  background: #000;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-reveal {
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--vs-reveal-delay, 0ms);
}

.vs-js .vs-reveal {
  opacity: 0;
  transform: translateY(24px);
}

.vs-js .vs-reveal--left {
  transform: translateX(-30px);
}

.vs-js .vs-reveal--scale {
  transform: scale(0.95);
}

.vs-js .vs-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vs-js .vs-reveal--left.is-visible,
.vs-js .vs-reveal--scale.is-visible {
  transform: translateX(0) scale(1);
}

.vs-js .vs-hero__copy h1,
.vs-js .vs-hero__copy p,
.vs-js .vs-hero__actions {
  animation: vsHeroIntro 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.vs-js .vs-hero__copy p {
  animation-delay: 0.15s;
}

.vs-js .vs-hero__actions {
  animation-delay: 0.3s;
}

@keyframes vsHeroIntro {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.vs-divider {
  display: none;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}

.vs-divider span {
  height: 1px;
  flex: 1;
  background: rgb(0 0 0 / 0.2);
}

.vs-divider i {
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  background: transparent;
}

.vs-divider i:nth-of-type(2),
.vs-divider i:nth-of-type(3) {
  background: #000;
}

.vs-stagger-shape {
  position: absolute;
  z-index: 0;
  width: 360px;
  height: 360px;
  pointer-events: none;
  opacity: 0.4;
}

.vs-stagger-shape span {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgb(0 0 0 / 0.03);
}

.vs-stagger-shape span:nth-child(2) {
  top: 120px;
  left: 120px;
}

.vs-stagger-shape span:nth-child(3) {
  top: 240px;
  left: 240px;
}

.vs-stagger-shape--left {
  top: 96px;
  left: -80px;
}

.vs-stagger-shape--right {
  right: 0;
  bottom: -80px;
  display: none;
}

.vs-dark-shape {
  position: absolute;
  top: 96px;
  right: 0;
  z-index: 0;
  display: none;
  width: 600px;
  height: 600px;
  opacity: 0.2;
  pointer-events: none;
}

.vs-dark-shape--bottom {
  top: auto;
  bottom: 0;
}

.vs-dark-shape span {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgb(255 255 255 / 0.05);
  background: rgb(255 255 255 / 0.05);
}

.vs-dark-shape span:nth-child(2) {
  top: 300px;
  left: 300px;
}

.vs-clients {
  padding-top: 32px;
}

.vs-clients__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 32px;
  align-items: center;
  justify-items: center;
}

.vs-client-logo {
  display: flex;
  min-height: 64px;
  width: 100%;
  max-width: 190px;
  align-items: center;
  justify-content: center;
  margin: 0;
  filter: grayscale(1);
  opacity: 0.65;
  transition: opacity 0.3s, filter 0.3s;
}

.vs-client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.vs-client-logo img {
  display: block;
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.vs-client-logo figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.vs-services__intro {
  margin-bottom: 40px;
}

.vs-services__title {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.vs-services__title span span,
.vs-services__title > span > span {
  color: #6b7280;
}

.vs-services__desktop {
  display: none;
}

.vs-services__intro p {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-services__list {
  position: relative;
}

.vs-service-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 40px 0;
}

.vs-service-row h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 0.95;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  transition: transform 0.5s, color 0.5s;
}

.vs-service-row__link {
  text-decoration: none;
  color: inherit;
}

.vs-service-row > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-service-row__shape {
  position: absolute;
  left: -20px;
  top: 10%;
  z-index: 0;
  display: none;
  width: 150px;
  height: 150px;
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
  pointer-events: none;
}

.vs-service-row__shape span {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #f4f4f4;
}

.vs-service-row__shape span:nth-child(2) {
  top: 40px;
  left: 40px;
  background: #f0f0f0;
}

.vs-service-row__shape span:nth-child(3) {
  top: 80px;
  left: 80px;
  background: #ececec;
}

.vs-service-row__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 8px 0 24px;
  overflow: hidden;
  background: #f3f4f6;
}

.vs-service-row__media img,
.vs-service-row__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vs-service-row__media video {
  opacity: 0;
  transition: opacity 0.4s;
}

.vs-service-row__media.has-video video {
  opacity: 1;
}

.vs-service-row__play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgb(0 0 0 / 0.12);
  color: #fff;
  cursor: pointer;
}

.vs-service-row__play svg {
  width: 60px;
  height: 60px;
  padding: 17px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.5);
  fill: currentColor;
  transition: transform 0.25s, background-color 0.25s;
}

.vs-service-row__play:hover svg,
.vs-service-row__play:focus-visible svg {
  background: rgb(0 0 0 / 0.7);
  transform: scale(1.08);
}

.vs-viewfinder::before,
.vs-viewfinder::after,
.vs-frame-corners::before,
.vs-frame-corners::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.vs-viewfinder {
  position: absolute;
  inset: 16px;
  display: none;
  mix-blend-mode: difference;
  opacity: 0.8;
}

.vs-viewfinder::before {
  inset: 0;
  border-top: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
  width: 20px;
  height: 20px;
  box-shadow: calc(100% - 20px) 0 0 -1.5px transparent;
}

.vs-viewfinder::after {
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
}

.vs-reasons__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.vs-reasons__title span {
  padding: 4px 16px 8px;
  background: #000;
  color: #fff;
}

.vs-reasons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.vs-reason-card {
  min-height: 100%;
  padding: 24px 24px 40px;
  border: 1px solid #e5e7eb;
  background: #f8f8f8;
  transition: border-color 0.3s;
}

.vs-reason-card:hover {
  border-color: #d1d5db;
}

.vs-reason-card > span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 8px;
  background: #000;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.vs-reason-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.vs-reason-card p,
.vs-workflow-step p,
.vs-strategy__columns p,
.vs-pricing__intro p {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-strategy__headline {
  margin: 0 0 32px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.vs-strategy__headline span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 16px 8px;
  background: #fff;
  color: #000;
  white-space: nowrap;
}

.vs-strategy__headline strong {
  display: block;
  white-space: nowrap;
}

.vs-strategy__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.vs-strategy__columns h4 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 800;
}

.vs-workflow__sticky h2 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.95;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.vs-workflow-step {
  padding: 40px 0 64px;
  border-top: 1px solid #1a1a1a;
}

.vs-workflow-step:first-child {
  border-top: 0;
}

.vs-workflow-step > span {
  display: inline-block;
  margin-bottom: 16px;
  padding: 2px 8px;
  background: #fff;
  color: #000;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.vs-workflow-step h3 {
  margin: 0 0 20px;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 0.95;
}

.vs-budget {
  color: #111827;
}

.vs-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgb(0 0 0 / 0.1);
}

.vs-corner--tl { top: 16px; left: 16px; border-top: 1px solid; border-left: 1px solid; }
.vs-corner--tr { top: 16px; right: 16px; border-top: 1px solid; border-right: 1px solid; }
.vs-corner--bl { bottom: 16px; left: 16px; border-bottom: 1px solid; border-left: 1px solid; }
.vs-corner--br { right: 16px; bottom: 16px; border-right: 1px solid; border-bottom: 1px solid; }

.vs-budget__grid {
  align-items: center;
  min-height: 40vh;
}

.vs-budget__headline {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.vs-budget__headline span,
.vs-budget__headline strong {
  display: block;
}

.vs-budget__headline span:nth-child(2) {
  margin-top: 8px;
  color: #9ca3af;
}

.vs-budget__headline strong {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 16px 12px;
  background: #000;
  color: #fff;
}

.vs-budget__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vs-budget__copy p:first-child {
  margin: 0;
  max-width: 672px;
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-budget__copy p:last-child {
  margin: 0;
  max-width: 672px;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-budget__copy i {
  width: 48px;
  height: 1px;
  background: rgb(0 0 0 / 0.1);
}

.vs-pricing__intro h2 {
  margin: 0 0 32px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.vs-pricing__intro p:first-of-type {
  margin-bottom: 24px;
  color: #fff;
  font-size: 1rem;
}

.vs-pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.vs-pricing-row td {
  padding: 24px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  color: #fff;
  transition: border-color 0.3s;
}

.vs-pricing-row:hover td {
  border-color: rgb(255 255 255 / 0.3);
}

.vs-pricing-row span {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #888;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vs-pricing-row i {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
}

.vs-pricing-row i::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: currentColor;
}

.vs-pricing-row strong {
  display: block;
  text-align: left;
  font-family: var(--vs-font-display);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.vs-pricing-row td:last-child {
  padding-left: 24px;
}

.vs-pricing__note {
  margin: 32px 0 0;
  color: #888;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 500;
}

.vs-pricing__button {
  margin-top: 32px;
}

.vs-calculator__copy h2 {
  margin: 0 0 32px;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.vs-calculator__copy > p {
  max-width: 760px;
  margin: 0 0 64px;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-calc-controls {
  display: grid;
  gap: 48px;
}

.vs-calc-controls legend {
  display: block;
  margin-bottom: 16px;
  color: #9ca3af;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.vs-calc-controls__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.vs-calc-controls button {
  min-height: 44px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.15;
  cursor: pointer;
}

.vs-calc-controls button.is-active {
  border-color: #000;
  background: #000;
  color: #fff;
}

.vs-calculator__result {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  max-width: 576px;
  margin: 0 auto;
  padding: 40px;
  border-left: 4px solid #fff;
  background: #181818;
  box-shadow: 0 20px 45px rgb(0 0 0 / 0.18);
  color: #fff;
}

.vs-calculator__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  pointer-events: none;
}

.vs-calculator__shape span {
  position: absolute;
  width: 128px;
  height: 128px;
  background: #222;
}

.vs-calculator__shape span:first-child {
  top: 0;
  right: 0;
}

.vs-calculator__shape span:nth-child(2) {
  top: 128px;
  right: 128px;
}

.vs-calculator__result > span {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #9ca3af;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.vs-calculator__result strong {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.35em;
  margin-bottom: 48px;
  font-family: var(--vs-font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.vs-calculator__result strong small {
  color: #9ca3af;
  font-family: var(--vs-font-sans);
  font-size: 0.32em;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.vs-calculator__result ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  margin: 0 0 56px;
  padding: 0;
  list-style: none;
}

.vs-calculator__result li {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #d1d5db;
  font-size: 1rem;
  font-weight: 500;
}

.vs-calculator__result li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background:
    linear-gradient(#fff, #fff) 50% 50% / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 58%);
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.08);
}

.vs-calculator__button {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: auto;
  padding: 22px 32px;
  background: #fff;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.vs-testimonials {
  border-top: 1px solid #e5e7eb;
}

.vs-testimonials__intro,
.vs-faq__intro {
  display: flex;
  flex-direction: column;
}

.vs-testimonials__intro h2,
.vs-faq__intro h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.vs-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.vs-testimonial {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  background: #f5f5f5;
  color: #000;
}

.vs-testimonial--0 {
  background: #ebebeb;
}

.vs-testimonial--2 {
  background: #0a0a0a;
  color: #fff;
}

.vs-quote-icon {
  position: relative;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  background: #000;
  color: #fff;
}

.vs-testimonial--2 .vs-quote-icon {
  background: #fff;
  color: #000;
}

.vs-quote-icon::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.vs-testimonial blockquote {
  flex: 1;
  margin: 0 0 48px;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-testimonial blockquote p {
  margin: 0;
}

.vs-testimonial--2 blockquote {
  color: #d1d5db;
}

.vs-testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid rgb(0 0 0 / 0.1);
}

.vs-testimonial--2 footer {
  border-color: rgb(255 255 255 / 0.1);
}

.vs-testimonial strong {
  font-family: var(--vs-font-display);
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vs-testimonial footer span {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

.vs-team {
  text-align: center;
}

.vs-team h2 {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  white-space: nowrap;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 0.95;
}

.vs-team h2 strong {
  padding: 4px 12px 8px;
  background: #000;
  color: #fff;
}

.vs-team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 24px;
  width: min(100%, 1152px);
  max-width: 1152px;
  margin: 0 auto;
}

.vs-team .vs-team__grid {
  margin-inline: auto;
}

.vs-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vs-team-card figure {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 0 16px;
  padding: 4px;
  background: #f5f5f5;
}

.vs-team-card figure span::before,
.vs-team-card figure span::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vs-team-card figure span::before {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  width: 8px;
  height: 8px;
}

.vs-team-card figure span::after {
  right: 0;
  bottom: 0;
  left: auto;
  top: auto;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 8px;
  height: 8px;
}

.vs-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.vs-team-card:hover img {
  transform: scale(1.05);
}

.vs-team-card h3 {
  margin: 0 0 4px;
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vs-team-card p {
  margin: 0;
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-faq__intro p {
  max-width: 448px;
  margin: 32px 0 0;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-faq-item {
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
}

.vs-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.vs-faq-item summary::-webkit-details-marker {
  display: none;
}

.vs-faq-item summary span {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.vs-faq-item summary i {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgb(0 0 0 / 0.2);
  transition: background-color 0.3s, border-color 0.3s;
}

.vs-faq-item summary i::before,
.vs-faq-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

.vs-faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.vs-faq-item[open] summary i {
  border-color: #000;
  background: #000;
  color: #fff;
}

.vs-faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.vs-faq-item[open] summary i::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.vs-faq-item > div {
  max-width: 768px;
  padding: 0 0 32px;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-contact__grid {
  position: relative;
  z-index: 1;
}

.vs-contact__grid--no-form {
  max-width: 720px;
}

.vs-contact__info h2 {
  margin: 0 0 32px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.9;
  max-width: 760px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.vs-contact__info > p {
  max-width: 512px;
  margin: 0 0 64px;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-contact__info address {
  display: grid;
  gap: 32px;
  font-style: normal;
}

.vs-contact__info address a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
  min-height: 56px;
  color: #000;
  text-decoration: none;
}

.vs-contact__info address a > span {
  grid-row: span 2;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(229 231 235 / 0.8);
  background: #f7f7f7;
  font-size: 20px;
}

.vs-contact__info address svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vs-contact__info address strong {
  align-self: end;
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-contact__info address a {
  font-size: 0.875rem;
  font-weight: 800;
}

.vs-contact__form {
  position: relative;
  isolation: isolate;
  background: #f3f3f3;
  padding: 40px 24px;
}

.vs-frame-corners {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(#000 0 0) top right / 32px 3px no-repeat,
    linear-gradient(#000 0 0) top right / 3px 32px no-repeat,
    linear-gradient(#000 0 0) bottom left / 32px 3px no-repeat,
    linear-gradient(#000 0 0) bottom left / 3px 32px no-repeat;
  pointer-events: none;
}

.vs-frame-corners::before {
  top: -2px;
  left: -2px;
  width: 32px;
  height: 32px;
  border-top: 3px solid #000;
  border-left: 3px solid #000;
}

.vs-frame-corners::after {
  right: -2px;
  bottom: -2px;
  width: 32px;
  height: 32px;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
}

.vs-form,
.vs-cf7 form {
  display: grid;
  gap: 24px;
}

.vs-cf7 {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.vs-cf7 form {
  pointer-events: auto;
}

.vs-contact__notice {
  background: #fff;
  color: #111;
  margin-top: 24px;
  padding: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.vs-form--placeholder {
  pointer-events: none;
}

.vs-form--placeholder input,
.vs-form--placeholder textarea,
.vs-form--placeholder button {
  opacity: 1;
}

.vs-form label,
.vs-cf7 label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #4a4a4a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vs-form > div,
.vs-cf7 .vs-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.vs-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.vs-form input:not([type="checkbox"]),
.vs-form textarea,
.vs-cf7 input:not([type="checkbox"]):not([type="submit"]),
.vs-cf7 textarea,
.vs-cf7 select {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 16px 20px;
  color: #000;
  font: inherit;
  font-size: 0.875rem;
  letter-spacing: 0;
  text-transform: none;
  cursor: text;
}

.vs-form input:focus,
.vs-form textarea:focus,
.vs-cf7 input:focus,
.vs-cf7 textarea:focus,
.vs-cf7 select:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.vs-form textarea,
.vs-cf7 textarea {
  min-height: 150px;
  resize: vertical;
}

.vs-form__privacy,
.vs-cf7 .vs-form__privacy label,
.vs-cf7 .vs-form__quiz label {
  display: flex;
  align-items: flex-start;
}

.vs-form__privacy,
.vs-cf7 .vs-form__privacy label {
  flex-direction: row !important;
  color: #4b5563 !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.6;
  text-transform: none !important;
}

.vs-cf7 .vs-form__quiz label {
  flex-direction: column;
}

.vs-cf7 p,
.vs-cf7 .vs-form__privacy .wpcf7-list-item {
  margin: 0;
}

.vs-cf7 .vs-form__privacy .wpcf7-form-control-wrap,
.vs-cf7 .vs-form__privacy .wpcf7-acceptance {
  display: block;
}

.vs-form__privacy input,
.vs-cf7 .vs-form__privacy input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  cursor: pointer;
}

.vs-cf7 .vs-form__privacy label {
  cursor: pointer;
}

.vs-form button,
.vs-cf7 input[type="submit"],
.vs-cf7 button[type="submit"] {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #000;
  color: #fff;
  padding: 20px 32px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.vs-cf7 .wpcf7-not-valid-tip,
.vs-cf7 .wpcf7-response-output {
  margin: 8px 0 0;
  border: 0;
  color: #111;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.vs-cta {
  padding: 32px 0;
  background: #fff;
  color: #000;
}

.vs-cta__box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid #000;
  background: #fff;
  padding: 32px 0;
  text-align: center;
}

.vs-cta .vs-frame-corners {
  inset: 16px;
  z-index: 10;
  background:
    linear-gradient(#000 0 0) top right / 24px 3px no-repeat,
    linear-gradient(#000 0 0) top right / 3px 24px no-repeat,
    linear-gradient(#000 0 0) bottom left / 24px 3px no-repeat,
    linear-gradient(#000 0 0) bottom left / 3px 24px no-repeat;
}

.vs-cta .vs-frame-corners::before {
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}

.vs-cta .vs-frame-corners::after {
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
}

.vs-cta__shape::before,
.vs-cta__shape::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.vs-cta__shape::before {
  top: 0;
  left: 0;
  width: 96px;
  height: 96px;
  background: #e8e8e8;
}

.vs-cta__shape::after {
  display: none;
}

.vs-cta__steps {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(#f4f4f4 0 0) right 40px bottom 0 / 32px 32px no-repeat,
    linear-gradient(#f4f4f4 0 0) right 64px bottom 32px / 32px 32px no-repeat;
  pointer-events: none;
}

.vs-cta__record {
  position: relative;
  z-index: 1;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: #000;
}

.vs-cta__record::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
}

.vs-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 896px;
  margin: 0 0 24px;
  padding-inline: 16px;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.vs-cta a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 48px);
  padding: 16px 40px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.vs-cta a:hover {
  background: #1f2937;
}

.vs-portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(0 0 0 / 0.9);
}

.vs-portfolio-modal[hidden] {
  display: none;
}

.vs-portfolio-modal__inner {
  position: relative;
  width: min(1180px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
}

.vs-portfolio-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.vs-portfolio-modal__close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 255 255 / 0.3);
  background: #000;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 640px) {
  .vs-section__center h2 {
    font-size: 3rem;
  }

  .vs-services__title {
    font-size: 2.25rem;
  }

  .vs-services__desktop {
    display: inline;
  }

  .vs-services__mobile {
    display: none;
  }

  .vs-service-row h3 {
    font-size: 2.25rem;
  }

  .vs-viewfinder {
    display: block;
  }

  .vs-reasons__title {
    font-size: 3rem;
  }

  .vs-workflow-step h3 {
    font-size: 2.75rem;
  }

  .vs-pricing-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
  }

  .vs-pricing-row strong {
    font-size: 1.7rem;
  }

  .vs-calculator__result {
    padding: 56px;
  }

  .vs-calculator__result strong {
    font-size: 4rem;
  }

  .vs-team h2 {
    gap: 12px;
    font-size: 3rem;
  }

  .vs-team-card figure {
    width: 128px;
    height: 128px;
    margin-bottom: 24px;
  }

  .vs-form > div,
  .vs-cf7 .vs-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-cta__box {
    padding: 64px 0;
  }

  .vs-cta__steps {
    background:
      linear-gradient(#f4f4f4 0 0) right 40px bottom 0 / 32px 32px no-repeat,
      linear-gradient(#f4f4f4 0 0) right 64px bottom 32px / 32px 32px no-repeat,
      linear-gradient(#f4f4f4 0 0) right 96px bottom 64px / 32px 32px no-repeat;
  }

  .vs-cta h2 {
    font-size: 3rem;
  }

  .vs-cta a {
    width: auto;
  }
}

@media (min-width: 768px) {
  .vs-section {
    padding: 96px 0;
  }

  .vs-section__center h2 {
    font-size: 3.75rem;
  }

  .vs-clients__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px 48px;
  }

  .vs-divider {
    display: flex;
  }

  .vs-service-row {
    border-bottom: 1px solid #e5e7eb;
  }

  .vs-service-row:last-child {
    border-bottom: 0;
  }

  .vs-service-row__shape {
    display: block;
  }

  .vs-service-row:hover .vs-service-row__shape {
    opacity: 1;
    transform: translateX(16px);
  }

  .vs-service-row:hover h3 {
    color: #6b7280;
    transform: translateX(8px);
  }

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

  .vs-strategy__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #1f2937;
    padding-top: 48px;
  }

  .vs-budget__copy p:first-child {
    font-size: 1.25rem;
  }

  .vs-budget__copy p:last-child {
    font-size: 1.125rem;
  }

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

  .vs-testimonial--2 {
    grid-column: span 2;
  }

  .vs-testimonial {
    padding: 40px;
  }

  .vs-team__grid {
    gap: 40px 32px;
  }

  .vs-contact__form {
    padding: 56px;
  }
}

@media (min-width: 1024px) {
  .vs-section {
    padding: 128px 0;
  }

  .vs-section__split {
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    align-items: start;
  }

  .vs-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 96px;
    align-items: start;
  }

  .vs-section__center {
    margin-bottom: 96px;
  }

  .vs-section__center h2 {
    font-size: 4rem;
  }

  .vs-section__subhead {
    font-size: 3rem;
  }

  .vs-dark-shape,
  .vs-stagger-shape--right {
    display: block;
  }

  .vs-clients__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 80px 48px;
  }

  .vs-services__title {
    font-size: 3.25rem;
  }

  .vs-service-row {
    grid-template-columns: minmax(300px, 27%) minmax(0, 0.85fr) minmax(320px, 440px);
    gap: 36px;
    align-items: center;
    padding: 80px 0;
  }

  .vs-service-row h3 {
    font-size: clamp(2.15rem, 3.2vw, 2.5rem);
    white-space: nowrap;
  }

  .vs-service-row__media {
    margin: 0;
  }

  .vs-reasons__title {
    font-size: 5.5rem;
  }

  .vs-reasons__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 80px;
  }

  .vs-strategy__headline {
    font-size: clamp(4.6rem, 6.2vw, 6.5rem);
  }

  .vs-strategy .vs-section__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1.38fr);
  }

  .vs-workflow__sticky {
    position: sticky;
    top: 192px;
    align-self: start;
  }

  .vs-workflow__sticky h2 {
    font-size: 4.5rem;
  }

  .vs-budget__grid {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 64px;
  }

  .vs-budget__headline {
    font-size: 4.5rem;
  }

  .vs-pricing__intro h2,
  .vs-contact__info h2 {
    font-size: 4.5rem;
  }

  .vs-calculator__grid,
  .vs-contact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 96px;
    align-items: start;
  }

  .vs-calculator__copy h2 {
    font-size: 3.75rem;
  }

  .vs-testimonials__intro,
  .vs-faq__intro {
    position: sticky;
    top: 128px;
  }

  .vs-testimonials__intro h2,
  .vs-faq__intro h2 {
    font-size: 3.75rem;
  }

  .vs-testimonials__intro h2 {
    white-space: nowrap;
  }

  .vs-faq__intro h2 {
    max-width: 430px;
  }

  .vs-team h2 {
    font-size: 5rem;
  }

  .vs-team__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vs-faq-item summary {
    padding: 40px 0;
  }

  .vs-faq-item summary span {
    font-size: 1.25rem;
  }

  .vs-cta {
    padding: 64px 0;
  }

  .vs-cta .vs-frame-corners {
    inset: 24px;
    background:
      linear-gradient(#000 0 0) top right / 40px 3px no-repeat,
      linear-gradient(#000 0 0) top right / 3px 40px no-repeat,
      linear-gradient(#000 0 0) bottom left / 40px 3px no-repeat,
      linear-gradient(#000 0 0) bottom left / 3px 40px no-repeat;
  }

  .vs-cta .vs-frame-corners::before,
  .vs-cta .vs-frame-corners::after {
    width: 40px;
    height: 40px;
  }

  .vs-cta__box {
    padding: 80px 0;
  }

  .vs-cta__shape::before {
    width: 192px;
    height: 192px;
  }

  .vs-cta__steps {
    background:
      linear-gradient(#f4f4f4 0 0) right 128px bottom 0 / 80px 80px no-repeat,
      linear-gradient(#f4f4f4 0 0) right 208px bottom 80px / 80px 80px no-repeat,
      linear-gradient(#f4f4f4 0 0) right 288px bottom 160px / 80px 80px no-repeat;
  }

  .vs-cta__record {
    width: 56px;
    height: 56px;
    margin-bottom: 40px;
  }

  .vs-cta__record::before {
    width: 20px;
    height: 20px;
  }

  .vs-cta h2 {
    margin-bottom: 48px;
    font-size: 3.75rem;
  }

  .vs-cta a {
    padding-block: 24px;
    font-size: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .vs-cta__box {
    padding: 96px 0;
  }

  .vs-cta h2 {
    font-size: 5rem;
  }
}

@media (min-width: 1280px) {
  .vs-services__title {
    font-size: 3.6rem;
  }

  .vs-service-row {
    grid-template-columns: minmax(360px, 27%) minmax(0, 0.85fr) minmax(360px, 500px);
    gap: 48px;
  }

  .vs-testimonials .vs-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }
}

@media (max-width: 640px) {
  .vs-pricing-table,
  .vs-pricing-table tbody,
  .vs-pricing-row,
  .vs-pricing-row td {
    display: block;
  }

  .vs-pricing-row {
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
    padding: 20px 0;
  }

  .vs-pricing-row td {
    border-bottom: 0;
    padding: 0;
  }

  .vs-pricing-row td:last-child {
    padding: 8px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vs-reveal,
  .vs-js .vs-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
