.vs-page {
  min-height: 100vh;
  background: #f8f8f8;
  color: #000;
}

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

.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.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.vs-page-hero {
  background: #0a0a0a;
  color: #fff;
  padding: 128px 0 96px;
}

.vs-page-hero__inner > span {
  display: inline-block;
  margin-bottom: 24px;
  padding: 4px 12px;
  background: #fff;
  color: #000;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-page-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 10vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vs-contact-page {
  padding-bottom: 96px;
}

.vs-contact-page__wrap {
  position: relative;
  z-index: 1;
  margin-top: -40px;
}

.vs-contact-page__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
  background: #fff;
  box-shadow: 0 20px 55px rgb(0 0 0 / 0.12);
  padding: 32px 24px;
}

.vs-contact-page__copy {
  max-width: 560px;
}

.vs-contact-page__intro {
  margin-bottom: 64px;
  color: #333;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.9;
}

.vs-contact-page__intro p {
  margin: 0 0 16px;
}

.vs-contact-page__intro ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.vs-contact-page__address {
  display: grid;
  gap: 32px;
  font-style: normal;
}

.vs-contact-page__address a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
  min-height: 56px;
  color: #000;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
}

.vs-contact-page__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;
}

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

.vs-contact-page__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-page__form {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 576px;
  background: #f3f3f3;
  padding: 32px 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,
.vs-frame-corners::after {
  content: "";
  position: absolute;
}

.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-form--placeholder {
  pointer-events: none;
}

.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;
  gap: 12px;
  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-contact-page__privacy {
  color: #4b5563;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.65;
}

.vs-contact-page__privacy summary {
  cursor: pointer;
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-contact-page__privacy p {
  margin: 10px 0 0;
}

.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-contact__notice {
  background: #fff;
  color: #111;
  margin-top: 24px;
  padding: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.vs-contact-map {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  margin-top: 64px;
  background: #fff;
  box-shadow: 0 20px 55px rgb(0 0 0 / 0.12);
}

.vs-contact-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.vs-contact-map__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  color: #000;
}

.vs-contact-map__placeholder span {
  font-family: var(--vs-font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vs-contact-map__placeholder a {
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: underline;
  text-transform: uppercase;
}

.vs-contact-map.is-loaded .vs-contact-map__placeholder {
  display: none;
}

.vs-blog-index {
  padding-bottom: 96px;
}

.vs-blog-index .vs-page-hero h1 {
  font-size: clamp(2rem, 8vw, 6.5rem);
}

.vs-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding: 64px 0 96px;
}

.vs-blog-card {
  display: block;
  color: #000;
  text-decoration: none;
}

.vs-blog-card figure {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 0 24px;
  border: 1px solid rgb(0 0 0 / 0.1);
  background: #f0f0f0;
}

.vs-blog-card figure::before,
.vs-blog-card figure::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.vs-blog-card figure::before {
  top: 8px;
  left: 8px;
  border-top: 2px solid rgb(0 0 0 / 0.5);
  border-left: 2px solid rgb(0 0 0 / 0.5);
}

.vs-blog-card figure::after {
  right: 8px;
  bottom: 8px;
  border-right: 2px solid rgb(0 0 0 / 0.5);
  border-bottom: 2px solid rgb(0 0 0 / 0.5);
}

.vs-blog-card:hover figure::before,
.vs-blog-card:hover figure::after {
  opacity: 1;
}

.vs-blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.vs-blog-card h2 {
  margin: 0;
  padding-right: 32px;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 0.3s;
}

.vs-blog-card:hover h2 {
  color: #4b5563;
}

.vs-blog-empty {
  padding: 80px 0;
  color: #4b5563;
  font-weight: 600;
}

.vs-blog-pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding-bottom: 64px;
}

.vs-blog-pagination .page-numbers {
  display: inline-flex;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(0 0 0 / 0.15);
  color: #000;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
}

.vs-blog-pagination .current {
  background: #000;
  color: #fff;
}

.vs-post {
  padding-bottom: 96px;
}

.vs-post-hero {
  position: relative;
  display: flex;
  min-height: 500px;
  height: 70vh;
  align-items: flex-end;
  padding: 128px 0 64px;
  color: #fff;
}

.vs-post-hero__media,
.vs-post-hero__media::after {
  position: absolute;
  inset: 0;
}

.vs-post-hero__media::after {
  content: "";
  background: rgb(0 0 0 / 0.5);
}

.vs-post-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.vs-post-hero__back {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  color: #d1d5db;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.vs-post-hero__back::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  background: radial-gradient(circle at center, currentColor 0 3px, transparent 4px);
}

.vs-post-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vs-post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  padding-top: 64px;
}

.vs-post-content {
  max-width: none;
}

.vs-post-content > * {
  max-width: 880px;
}

.vs-post-content > p:first-child {
  color: #000;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 500;
  line-height: 1.9;
}

.vs-post-content h2 {
  margin: 80px 0 32px;
  color: #000;
  font-family: var(--vs-font-sans);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.vs-post-content h3 {
  margin: 48px 0 24px;
  color: #000;
  font-family: var(--vs-font-sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.vs-post-content p,
.vs-post-content li {
  color: #1f2937;
  font-size: 1.0625rem;
  line-height: 1.85;
}

.vs-post-content a {
  color: #000;
  text-decoration: underline;
  text-decoration-color: rgb(0 0 0 / 0.3);
}

.vs-post-content ul,
.vs-post-content ol {
  display: grid;
  gap: 16px;
  margin: 0 0 32px;
  padding-left: 24px;
}

.vs-post-content blockquote {
  border-left: 3px solid #000;
  background: rgb(0 0 0 / 0.05);
  margin: 48px 0;
  padding: 24px 32px;
  color: #000;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
}

.vs-post-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.05);
}

.vs-post-content th,
.vs-post-content td {
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
  padding: 16px 20px;
  text-align: left;
}

.vs-post-content th {
  background: #f4f4f4;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vs-post-sidebar {
  align-self: start;
}

.vs-post-sidebar__box {
  display: grid;
  gap: 24px;
}

.vs-post-toc {
  border: 1px solid rgb(0 0 0 / 0.1);
  background: #fff;
  padding: 32px;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.05);
}

.vs-post-toc h2 {
  margin: 0 0 24px;
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
  padding-bottom: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-post-toc nav {
  display: grid;
  border-left: 1px solid rgb(0 0 0 / 0.14);
  padding-left: 18px;
}

.vs-post-toc a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
  padding: 14px 0;
  color: #000;
  text-decoration: none;
}

.vs-post-toc a:first-child {
  padding-top: 0;
}

.vs-post-toc a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.vs-post-toc a span {
  color: #9ca3af;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.55;
}

.vs-post-toc a em {
  color: #4b5563;
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.2s;
}

.vs-post-toc a:hover em {
  color: #000;
}

.vs-post-sidebar__cta {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  padding: 32px;
}

.vs-post-sidebar__cta::before,
.vs-post-sidebar__cta::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  border: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(255 255 255 / 0.05);
  pointer-events: none;
}

.vs-post-sidebar__cta::before {
  top: 0;
  right: 0;
}

.vs-post-sidebar__cta::after {
  right: 96px;
  bottom: -48px;
}

.vs-post-sidebar__cta > * {
  position: relative;
  z-index: 1;
}

.vs-post-sidebar__cta > span {
  display: inline-block;
  margin-bottom: 18px;
  background: #fff;
  color: #000;
  padding: 4px 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-post-sidebar__cta h3 {
  max-width: 240px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.vs-post-sidebar__cta p {
  margin: 0 0 24px;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}

.vs-post-sidebar__cta a {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  padding: 16px 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.vs-post-sidebar__cta a:hover {
  background: #e5e7eb;
}

@media (min-width: 640px) {
  .vs-form > div,
  .vs-cf7 .vs-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-contact-page__panel {
    padding: 64px;
  }

  .vs-contact-page__form {
    padding: 48px;
  }
}

@media (min-width: 768px) {
  .vs-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 32px;
  }
}

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

  .vs-blog-index .vs-page-hero h1 {
    font-size: clamp(2.5rem, 10vw, 6.5rem);
  }

  .vs-contact-page {
    padding-bottom: 128px;
  }

  .vs-contact-page__wrap {
    margin-top: -80px;
  }

  .vs-contact-page__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 96px;
    padding: 80px;
  }

  .vs-contact-map {
    margin-top: 96px;
  }

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

  .vs-post-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 96px;
    padding-top: 96px;
  }

  .vs-post-sidebar {
    position: sticky;
    top: 128px;
  }
}

.vs-info-page {
  background: #f8f8f8;
  overflow-x: clip;
}

.vs-info-hero {
  background: #090909;
  color: #fff;
  padding: 136px 0 80px;
}

.vs-info-hero__inner {
  max-width: 1180px;
}

.vs-info-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
  background: #fff;
  color: #000;
  padding: 6px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-info-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.75rem);
  font-weight: 900;
  line-height: 0.96;
  text-transform: none;
}

.vs-info-hero p {
  max-width: 900px;
  margin: 32px 0 0;
  color: #d1d5db;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
}

.vs-info-hero a,
.vs-info-section a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-color: currentColor;
}

.vs-info-section {
  background: #fff;
  color: #000;
  padding: 72px 0;
}

.vs-info-section:nth-of-type(even) {
  background: #f3f3f3;
}

.vs-info-section__head {
  max-width: 980px;
  margin-bottom: 48px;
}

.vs-info-section__head h2,
.vs-info-heading h2,
.vs-info-location__copy h2 {
  margin: 0;
  color: #000;
  font-family: var(--vs-font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.03;
  text-transform: none;
  text-wrap: balance;
}

.vs-info-section__head p,
.vs-info-heading p,
.vs-info-copy p,
.vs-info-location__copy p {
  margin: 24px 0 0;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.vs-info-copy p:first-child {
  margin-top: 0;
}

.vs-info-split,
.vs-info-location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.vs-info-factor-grid,
.vs-info-detail-grid,
.vs-info-summary-grid,
.vs-info-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

.vs-info-section--about-intro .vs-info-about-grid {
  margin-top: clamp(64px, 6vw, 88px);
}

.vs-info-factor,
.vs-info-card,
.vs-info-request,
.vs-info-table-card {
  background: #f8f8f8;
  border: 1px solid #e5e7eb;
}

.vs-info-factor {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
}

.vs-info-factor span,
.vs-info-card__index,
.vs-price-example__copy > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 34px;
  min-height: 26px;
  background: #000;
  color: #fff;
  padding: 4px 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.vs-info-factor p,
.vs-info-card p,
.vs-info-request li,
.vs-price-example p,
.vs-info-brand-list li {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-info-card {
  padding: 24px;
}

.vs-info-card h3,
.vs-info-request h3,
.vs-info-table-card h3,
.vs-price-example h3 {
  margin: 16px 0 14px;
  color: #000;
  font-family: var(--vs-font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 900;
  line-height: 1.12;
  text-transform: none;
  text-wrap: balance;
}

.vs-info-mini-table {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  background: #d8d8d8;
}

.vs-info-mini-table > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  background: #fff;
  padding: 14px 0;
}

.vs-info-mini-table span,
.vs-info-mini-table strong {
  padding-inline: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.vs-info-mini-table strong {
  color: #000;
  white-space: nowrap;
}

.vs-price-examples {
  display: grid;
  gap: 24px;
}

.vs-price-example {
  display: grid;
  gap: 24px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 20px;
}

.vs-price-example__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vs-price-example__video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0;
  background: #111;
}

.vs-price-example__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vs-info-brand-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.vs-info-brand-list li {
  position: relative;
  min-height: 18px;
  padding-left: 30px;
}

.vs-info-brand-list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 14px;
  height: 14px;
  background: #000;
  box-shadow: inset 0 0 0 5px #000, inset 0 0 0 6px #fff;
}

.vs-info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  background: #000;
  color: #fff !important;
  padding: 18px 24px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.vs-info-request {
  margin-top: 24px;
  padding: 28px;
}

.vs-info-table-grid,
.vs-info-animation-body {
  display: grid;
  gap: 24px;
}

.vs-info-table-card {
  padding: 24px;
  background: #fff;
}

.vs-info-table-card h3 {
  margin-top: 0;
}

.vs-info-table-scroll {
  width: 100%;
  overflow-x: auto;
}

.vs-info-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #fff;
}

.vs-info-table caption {
  caption-side: top;
  max-width: 780px;
  padding: 0 0 20px;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

.vs-info-table th,
.vs-info-table td {
  border-top: 1px solid #e5e7eb;
  padding: 18px 0;
  color: #111827;
  font-size: 0.9375rem;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.vs-info-table th {
  color: #6b7280;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vs-info-table td:first-child,
.vs-info-table th:first-child {
  padding-right: 24px;
}

.vs-info-table td:last-child,
.vs-info-table th:last-child {
  width: 34%;
  color: #000;
  font-weight: 800;
  white-space: nowrap;
}

.vs-info-location__copy {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 32px 24px;
}

.vs-info-address {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  font-style: normal;
}

.vs-info-address a {
  display: grid;
  gap: 6px;
  background: #f8f8f8;
  color: #000;
  padding: 18px 20px;
  text-decoration: none;
}

.vs-info-address strong {
  color: #6b7280;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-info-address span {
  color: #000;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.5;
}

.vs-info-location__map {
  min-height: 360px;
  margin-top: 0;
  box-shadow: none;
}

.vs-info-location__map iframe {
  height: 100%;
  min-height: 360px;
}

@media (max-width: 767px) {
  .vs-info-mini-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .vs-info-table {
    min-width: 0;
  }

  .vs-info-table thead {
    display: none;
  }

  .vs-info-table tr,
  .vs-info-table td {
    display: block;
    width: 100% !important;
  }

  .vs-info-table tr {
    border-top: 1px solid #e5e7eb;
    padding: 14px 0;
  }

  .vs-info-table td {
    border: 0;
    padding: 4px 0;
    white-space: normal !important;
  }

  .vs-info-table td:first-child {
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .vs-info-factor-grid,
  .vs-info-summary-grid,
  .vs-info-about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .vs-info-location__copy {
    padding: 48px;
  }
}

@media (min-width: 1024px) {
  .vs-info-hero {
    padding: 188px 0 118px;
  }

  .vs-info-section {
    padding: 104px 0;
  }

  .vs-info-about-grid {
    margin-top: 64px;
  }

  .vs-price-factors .vs-info-heading {
    position: static;
  }

  .vs-info-split {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
  }

  .vs-info-section--about-intro .vs-info-split {
    grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  }

  .vs-info-section--about-intro .vs-info-heading,
  .vs-info-section--about-intro .vs-info-copy {
    min-width: 0;
  }

  .vs-info-heading {
    position: sticky;
    top: 128px;
  }

  .vs-info-section__head {
    margin-bottom: 72px;
  }

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

  .vs-price-example {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    padding: 32px;
  }

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

  .vs-info-location__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 48px;
    align-items: stretch;
  }

  .vs-info-location__map {
    min-height: 560px;
  }

  .vs-info-location__map iframe {
    min-height: 560px;
  }
}

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

  .vs-info-hero h1 {
    font-size: clamp(4.4rem, 5.2vw, 6.25rem);
  }
}

.vs-price-hero {
  padding-bottom: 118px;
}

.vs-info-hero p {
  max-width: 720px;
  color: #c8c8c8;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  margin: 24px 0 0;
}

.vs-price-nav-section {
  background: #efefef !important;
  padding: 52px 0;
}

.vs-price-nav-layout {
  display: grid;
  gap: 32px;
  background: #fff;
  padding: clamp(28px, 4vw, 56px);
}

.vs-price-nav-layout h2 {
  max-width: 780px;
  margin: 0;
  color: #000;
  font-family: var(--vs-font-display);
  font-size: clamp(2rem, 4.8vw, 4.75rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: none;
}

.vs-price-nav-layout p {
  max-width: 580px;
  margin: 22px 0 0;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-price-nav,
.vs-price-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.vs-price-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vs-price-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.vs-price-nav li:nth-child(even) a {
  background: #222;
  color: #fff;
}

.vs-price-factors,
.vs-price-examples-section,
.vs-price-workflow {
  background: #fff !important;
}

.vs-price-types,
.vs-price-postproduction,
.vs-price-technical {
  background: #f3f3f3 !important;
}

.vs-price-animation {
  background: #0a0a0a !important;
  color: #fff;
}

.vs-price-animation .vs-eyebrow {
  background: #fff;
  color: #000;
}

.vs-price-animation .vs-price-heading h2,
.vs-price-animation .vs-price-heading h3,
.vs-price-animation .vs-price-text-columns h3,
.vs-price-animation .vs-price-subtimeline h3 {
  color: #fff;
}

.vs-price-animation .vs-price-heading p,
.vs-price-animation .vs-price-text-columns p,
.vs-price-animation .vs-price-note,
.vs-price-animation .vs-price-subtimeline p,
.vs-price-animation .vs-price-clean-list li {
  color: #c8c8c8;
}

.vs-price-heading h2 span {
  display: inline;
  background: #000;
  color: #fff;
  padding: 0 0.16em 0.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.vs-price-factor-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vs-price-factor-panel {
  display: grid;
  gap: 30px;
}

.vs-price-factor-lead {
  max-width: 820px;
  margin: 0;
  color: #111827;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}

.vs-price-factor-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.vs-price-factor-list span,
.vs-price-label,
.vs-price-band__intro > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 34px;
  min-height: 26px;
  background: #000;
  color: #fff;
  padding: 4px 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.vs-price-factor-list p {
  margin: 0;
  color: #2f3640;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 650;
  line-height: 1.55;
}

.vs-price-section-head {
  max-width: 1120px;
}

.vs-price-section-head p,
.vs-price-workflow .vs-price-heading p {
  max-width: 720px;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-price-band-list,
.vs-price-media-list,
.vs-price-technical-list {
  display: grid;
  gap: 28px;
}

.vs-price-band,
.vs-price-media-row {
  display: grid;
  gap: 32px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 56px);
  background: #fff;
}

.vs-price-band:nth-child(even) {
  background: #fff;
}

.vs-price-media-row:nth-child(even) {
  background: #ececec;
}

.vs-price-band__intro h3,
.vs-price-media-row__copy h3,
.vs-price-text-columns h3,
.vs-price-subtimeline h3 {
  margin: 18px 0 16px;
  color: #000;
  font-family: var(--vs-font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: none;
  overflow-wrap: normal;
  word-break: normal;
}

.vs-price-band__intro p,
.vs-price-media-row__copy p,
.vs-price-text-columns p,
.vs-price-note,
.vs-price-subtimeline p {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-price-inline-list,
.vs-price-clean-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.vs-price-inline-list li {
  background: #000;
  color: #fff;
  padding: 9px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.vs-price-clean-list {
  display: grid;
  gap: 14px;
}

.vs-price-clean-list li {
  position: relative;
  padding-left: 28px;
  color: #4b5563;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
}

.vs-price-clean-list li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 14px;
  height: 14px;
  background: #000;
  box-shadow: inset 0 0 0 5px #000, inset 0 0 0 6px #fff;
}

.vs-price-animation .vs-price-clean-list li::before {
  background: #fff;
  box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 6px #000;
}

.vs-price-list {
  display: grid;
  gap: 10px;
}

.vs-price-list__row {
  display: grid;
  gap: 8px;
  background: #f5f5f5;
  padding: 18px 20px;
}

.vs-price-list dt {
  color: #4b5563;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.4;
}

.vs-price-list dd {
  color: #000;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
}

.vs-price-list--dark .vs-price-list__row {
  background: #1f1f1f;
}

.vs-price-list--dark dt {
  color: #a3a3a3;
}

.vs-price-list--dark dd {
  color: #fff;
}

.vs-price-timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vs-price-timeline li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  background: rgb(255 255 255 / 0.72);
  padding: 18px 20px;
}

.vs-price-animation .vs-price-timeline li {
  background: #1f1f1f;
}

.vs-price-timeline strong {
  display: block;
  color: #000;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.35;
}

.vs-price-animation .vs-price-timeline strong {
  color: #fff;
}

.vs-price-timeline p {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.vs-price-timeline > li > span {
  color: #000;
  font-family: var(--vs-font-display);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.15;
}

.vs-price-animation .vs-price-timeline p,
.vs-price-animation .vs-price-timeline > li > span {
  color: #c8c8c8;
}

.vs-price-media-row {
  padding: 0;
  background: transparent;
}

.vs-price-media-row:nth-child(even) {
  background: transparent;
}

.vs-price-media-row__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #f3f3f3;
  padding: clamp(28px, 4vw, 56px);
}

.vs-price-media-row:nth-child(even) .vs-price-media-row__copy {
  background: #0a0a0a;
}

.vs-price-media-row:nth-child(even) .vs-price-media-row__copy h3,
.vs-price-media-row:nth-child(even) .vs-price-media-row__copy .vs-price-clean-list li {
  color: #fff;
}

.vs-price-media-row:nth-child(even) .vs-price-media-row__copy p {
  color: #c8c8c8;
}

.vs-price-media-row:nth-child(even) .vs-price-media-row__copy .vs-price-clean-list li::before {
  background: #fff;
  box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 6px #000;
}

.vs-price-media-row:nth-child(even) .vs-price-label {
  background: #fff;
  color: #000;
}

.vs-price-media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 240px;
  margin: 0;
  background: #111;
}

.vs-price-media-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vs-price-text-columns {
  display: grid;
  gap: 24px;
}

.vs-price-text-columns li {
  background: rgb(255 255 255 / 0.08);
  padding: clamp(22px, 2.6vw, 34px);
}

.vs-price-postproduction .vs-price-text-columns li {
  background: #fff;
}

.vs-price-postproduction .vs-price-text-columns h3 {
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  line-height: 1.02;
}

.vs-price-note {
  margin-top: 24px;
}

.vs-price-subtimeline {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.vs-price-technical-group {
  background: #fff;
}

.vs-price-technical-group summary {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 22px 24px;
  list-style: none;
}

.vs-price-technical-group summary::-webkit-details-marker {
  display: none;
}

.vs-price-technical-group summary span {
  color: #000;
  font-family: var(--vs-font-display);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.15;
}

.vs-price-technical-group summary strong {
  background: #000;
  color: #fff;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vs-info-table--quiet {
  min-width: 0;
  padding-inline: 24px;
}

.vs-info-table--quiet caption {
  padding: 0 24px 16px;
}

.vs-info-table--quiet th,
.vs-info-table--quiet td {
  padding: 14px 24px;
}

@media (min-width: 768px) {
  .vs-price-nav-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .vs-price-timeline li {
    grid-template-columns: minmax(0, 1fr) minmax(120px, auto);
    gap: 18px;
  }

  .vs-price-timeline > li > span {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    text-align: right;
    white-space: nowrap;
  }

  .vs-price-timeline li > div {
    grid-column: 1;
    grid-row: 1;
  }

  .vs-price-band__details .vs-price-list__row {
    grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
    align-items: start;
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .vs-price-band {
    grid-template-columns: 1fr;
  }

  .vs-price-band__details {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: clamp(28px, 4vw, 52px);
  }

  .vs-price-media-row {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    min-height: 520px;
  }

  .vs-price-media-row:nth-child(even) {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  }

  .vs-price-media-row:nth-child(even) .vs-price-media-row__copy {
    order: 2;
  }

  .vs-price-media-row:nth-child(even) .vs-price-media-frame {
    order: 1;
  }

  .vs-price-media-frame {
    min-height: 520px;
  }

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

  .vs-price-postproduction .vs-price-text-columns--large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vs-price-animation .vs-info-split {
    grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1.48fr);
  }
}

@media (min-width: 1500px) {
  .vs-price-text-columns--large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.vs-price-nav-section {
  padding: clamp(34px, 4vw, 58px) 0;
}

.vs-price-nav-layout {
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(26px, 3.5vw, 46px);
}

.vs-price-nav-layout h2 {
  font-family: var(--vs-font-sans);
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.vs-price-nav-layout p {
  max-width: 620px;
  margin-top: 14px;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-price-nav {
  gap: 12px;
}

.vs-price-nav ul {
  gap: 12px;
}

.vs-price-nav a,
.vs-price-nav li:nth-child(even) a {
  min-height: 48px;
  background: #fff;
  color: #000;
  border: 1px solid #d7d7d7;
  padding: 13px 18px;
  font-family: var(--vs-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vs-price-nav a:hover,
.vs-price-nav a:focus-visible {
  background: #000;
  border-color: #000;
  color: #fff;
}

.vs-price-factors .vs-info-split {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 44px);
}

.vs-price-factors .vs-price-heading {
  max-width: 880px;
}

.vs-price-factors .vs-price-heading h2 {
  font-size: clamp(2.4rem, 4.3vw, 5rem);
  line-height: 0.98;
  white-space: normal;
}

.vs-price-factors .vs-price-heading h2 span {
  background: transparent;
  color: inherit;
  padding: 0;
}

@media (min-width: 1024px) {
  .vs-price-factors .vs-price-heading h2 {
    white-space: nowrap;
  }
}

.vs-price-factor-panel {
  max-width: 1240px;
  gap: 22px;
}

.vs-price-factor-lead {
  max-width: 780px;
  color: #4b5563;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 600;
  line-height: 1.65;
}

.vs-price-factor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 42px;
  padding-left: 1.15rem;
  list-style: disc;
}

.vs-price-factor-list li {
  display: list-item;
  padding-left: 0.1rem;
}

.vs-price-factor-list span {
  display: none;
}

.vs-price-factor-list p {
  color: #2f3640;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.62;
}

.vs-price-inline-list {
  gap: 12px 18px;
}

.vs-price-inline-list li {
  background: #fff;
  color: #000;
  border: 1px solid #d1d5db;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vs-price-band {
  gap: clamp(28px, 4vw, 52px);
}

.vs-price-band__intro h3,
.vs-price-media-row__copy h3,
.vs-price-text-columns h3,
.vs-price-subtimeline h3 {
  letter-spacing: 0;
}

.vs-price-media-row__copy {
  background: #0a0a0a;
  color: #fff;
}

.vs-price-media-row__copy h3,
.vs-price-media-row__copy .vs-price-clean-list li {
  color: #fff;
}

.vs-price-media-row__copy p {
  color: #c8c8c8;
}

.vs-price-media-row__copy .vs-price-label {
  background: #fff;
  color: #000;
}

.vs-price-media-row__copy .vs-price-clean-list li::before {
  background: #fff;
  box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 6px #000;
}

.vs-price-media-row:nth-child(even) .vs-price-media-row__copy {
  background: #f3f3f3;
  color: #000;
}

.vs-price-media-row:nth-child(even) .vs-price-media-row__copy h3,
.vs-price-media-row:nth-child(even) .vs-price-media-row__copy .vs-price-clean-list li {
  color: #000;
}

.vs-price-media-row:nth-child(even) .vs-price-media-row__copy p {
  color: #6b7280;
}

.vs-price-media-row:nth-child(even) .vs-price-media-row__copy .vs-price-clean-list li::before {
  background: #000;
  box-shadow: inset 0 0 0 5px #000, inset 0 0 0 6px #fff;
}

.vs-price-media-row:nth-child(even) .vs-price-label {
  background: #000;
  color: #fff;
}

.vs-price-animation__heading {
  margin-bottom: 48px;
}

.vs-price-animation__heading h2 {
  font-size: clamp(2.45rem, 4.1vw, 4.6rem);
  line-height: 0.98;
  margin: 0;
  color: #fff;
  font-family: var(--vs-font-display);
  font-weight: 900;
  text-transform: none;
  text-wrap: balance;
}

.vs-price-animation .vs-price-heading p {
  max-width: 560px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-price-postproduction__heading p {
  max-width: 720px;
  margin-top: 24px;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-price-animation .vs-price-text-columns {
  gap: 28px;
}

.vs-price-animation .vs-price-text-columns li {
  background: transparent;
  padding: 0 0 28px;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.vs-price-animation .vs-price-text-columns h3 {
  margin-top: 0;
  font-size: clamp(1.5rem, 2.1vw, 2.25rem);
  line-height: 1.05;
}

.vs-price-animation .vs-price-list--dark .vs-price-list__row {
  background: #171717;
}

.vs-price-postproduction__heading {
  margin-bottom: 48px;
}

.vs-price-postproduction .vs-price-text-columns--large {
  margin-top: 0;
}

.vs-price-postproduction__heading h2 {
  margin: 0;
  color: #000;
  font-family: var(--vs-font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.03;
  text-transform: none;
  text-wrap: balance;
}

.vs-price-postproduction .vs-price-text-columns h3 {
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  line-height: 1.08;
}

@media (max-width: 767px) {
  .vs-price-factor-list {
    grid-template-columns: 1fr;
  }
}
