.vs-service-page {
  background: #f8f8f8;
  color: #000;
}

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

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

.vs-service-hero h1 {
  max-width: 1260px;
  margin: 0 0 48px;
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: none;
}

.vs-service-hero h1 span {
  color: #6b7280;
}

.vs-service-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.vs-service-hero__copy p {
  max-width: 672px;
  margin: 0 0 40px;
  color: #d1d5db;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.vs-service-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.vs-service-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.vs-service-hero__actions .vs-button {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  padding: 20px 32px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
}

.vs-service-hero__actions .vs-button--outline {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.vs-service-hero__actions .vs-button--outline:hover {
  background: #fff;
  color: #000;
}

.vs-service-hero__actions ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vs-service-hero__actions li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.vs-service-hero__actions li::before {
  content: "✓";
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.vs-service-hero__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: #111;
  box-shadow: 0 28px 70px rgb(0 0 0 / 0.35);
}

.vs-service-hero__media img,
.vs-service-hero__media video,
.vs-service-hero__overlay {
  position: absolute;
  inset: 0;
}

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

.vs-service-hero__media video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s;
}

.vs-service-hero__media.has-video video {
  opacity: 0.6;
}

.vs-service-hero__media.has-video img {
  opacity: 0;
}

.vs-service-hero__overlay {
  z-index: 2;
  background: linear-gradient(to top, rgb(0 0 0 / 0.8), transparent 55%);
}

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

.vs-service-hero__media:hover .vs-service-hero__play {
  opacity: 1;
  background: rgb(0 0 0 / 0.4);
}

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

.vs-service-corners {
  position: absolute;
  inset: 24px;
  z-index: 5;
  pointer-events: none;
}

.vs-service-corners i {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: #fff;
  opacity: 1;
  transition: opacity 0.5s, transform 0.5s;
}

.vs-service-corners i:nth-child(1) {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: none;
}

.vs-service-corners i:nth-child(2) {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: none;
}

.vs-service-corners i:nth-child(3) {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
  transform: none;
}

.vs-service-corners i:nth-child(4) {
  right: 0;
  bottom: 0;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: none;
}

.vs-service-hero__media:hover .vs-service-corners i {
  opacity: 1;
  transform: translate(0, 0);
}

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

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

.vs-service-overview__grid {
  display: grid;
  gap: 48px;
}

.vs-service-overview .vs-container {
  max-width: 1920px;
}

.vs-service-overview__copy h2 {
  max-width: none;
  margin: 0 0 32px;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.vs-service-overview__copy h2 span {
  color: #6b7280;
}

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

.vs-desktop-nowrap {
  white-space: normal;
}

.vs-desktop-break {
  display: none;
}

.vs-service-overview__copy p,
.vs-service-card p,
.vs-service-list-row p,
.vs-service-platforms p,
.vs-service-workflow__sticky p,
.vs-service-workflow-step p,
.vs-service-pricing p,
.vs-service-faq__intro p,
.vs-service-faq-item > div {
  color: #6b7280;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-service-overview__copy p {
  max-width: 720px;
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.625;
}

.vs-service-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

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

.vs-service-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 32px;
  background: #f5f5f5;
}

.vs-service-card:nth-child(1),
.vs-service-card:nth-child(4) {
  background: #ebebeb;
}

.vs-service-card:nth-child(2),
.vs-service-card:nth-child(3) {
  background: #f5f5f5;
}

.vs-service-card h3 {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 24px;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.vs-service-card h3 span,
.vs-service-list-row > span {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background: #000;
  color: #fff;
}

.vs-service-card svg,
.vs-service-list-row svg,
.vs-service-platforms svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vs-service-card svg {
  width: 16px;
  height: 16px;
}

.vs-service-split-title {
  position: relative;
  display: grid;
  margin-bottom: 64px;
}

.vs-service-split-title > div {
  padding: 48px 24px;
}

.vs-service-split-title > div:first-child {
  background: #000;
  color: #fff;
}

.vs-service-split-title h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.vs-service-split-title p {
  max-width: 620px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.vs-service-list {
  display: grid;
}

.vs-service-list-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
}

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

.vs-service-list-row > span {
  width: 64px;
  height: 64px;
  border: 1px solid rgb(0 0 0 / 0.1);
  background: transparent;
  color: #000;
  transition: background-color 0.4s, color 0.4s;
}

.vs-service-list-row:hover > span {
  background: #000;
  color: #fff;
}

.vs-service-list-row h3 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
}

.vs-service-list-row p {
  max-width: 860px;
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
}

.vs-service-platforms__intro {
  border-bottom: 1px solid #333;
  margin-bottom: 64px;
  padding-bottom: 48px;
}

.vs-service-platforms__intro h2 {
  max-width: 1220px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
}

.vs-service-platforms__intro p {
  max-width: 768px;
  margin: 24px 0 0;
  color: #a0a0a0;
  font-size: 1rem;
}

.vs-service-platforms__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.vs-service-platforms__grid > li > span {
  display: block;
  margin-bottom: 32px;
  color: #fff;
}

.vs-service-platforms__grid > li > span svg {
  width: 24px;
  height: 24px;
}

.vs-service-platforms h3 {
  margin: 0 0 16px;
  font-family: var(--vs-font-sans);
  font-size: 1.125rem;
  font-weight: 800;
}

.vs-service-platforms p,
.vs-service-workflow-step p,
.vs-service-workflow__sticky p {
  color: #a0a0a0;
}

.vs-service-workflow__grid,
.vs-service-pricing__grid,
.vs-service-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.vs-service-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: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-service-eyebrow--light {
  background: #fff;
  color: #000;
}

.vs-service-workflow__sticky h2,
.vs-service-faq__intro h2 {
  margin: 0 0 32px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
}

.vs-service-workflow__sticky p,
.vs-service-faq__intro p {
  max-width: 460px;
  margin: 0;
}

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

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

.vs-service-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: 800;
  letter-spacing: 0.12em;
}

.vs-service-workflow-step h3 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 0.95;
}

.vs-service-workflow-note {
  border: 1px solid rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.1);
  padding: 24px;
}

.vs-service-workflow-note strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.5;
}

.vs-service-workflow-note p {
  max-width: none;
  margin: 0;
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-service-pricing {
  background: #f8f8f8;
  border-top: 1px solid #e5e7eb;
}

.vs-service-pricing__intro {
  display: flex;
  max-width: 980px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 96px;
  text-align: center;
}

.vs-service-pricing__intro h2 {
  margin: 0 0 32px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 0.9;
}

.vs-service-pricing__intro h2 span {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.02em 0.14em 0.08em;
  line-height: 0.95;
}

.vs-service-pricing__intro p {
  margin: 0 auto 24px;
  color: #374151;
  font-size: 1.125rem;
}

.vs-service-pricing__intro strong {
  max-width: 680px;
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.vs-service-pricing__copy h2 {
  margin: 0 0 32px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 0.9;
}

.vs-service-pricing__copy p {
  margin: 0 0 40px;
  color: #374151;
  font-size: 1.125rem;
}

.vs-service-pricing__copy h3,
.vs-service-price-table h3 {
  margin: 0 0 24px;
  font-family: var(--vs-font-sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-service-pricing__copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vs-service-pricing__copy li {
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 600;
}

.vs-service-pricing__copy li::before,
.vs-service-price-row span::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 1px solid #666;
  background: radial-gradient(circle at 50% 50%, #666 0 2px, transparent 3px);
}

.vs-service-price-table {
  border: 1px solid #f0f0f0;
  background: #fff;
  padding: 32px 24px;
  box-shadow: 0 20px 40px -15px rgb(0 0 0 / 0.05);
}

.vs-service-price-table h3 {
  border-bottom: 2px solid #000;
  padding-bottom: 16px;
}

.vs-service-price-table__table {
  width: 100%;
  border-collapse: collapse;
}

.vs-service-price-row td {
  padding: 14px 0;
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
  color: #000;
}

.vs-service-price-row span {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #666;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.vs-service-price-row strong {
  display: block;
  font-family: var(--vs-font-display);
  font-size: 1.125rem;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
}

.vs-service-price-row td:last-child {
  width: 150px;
  padding-left: 28px;
  white-space: nowrap;
}

.vs-service-price-table > p {
  margin: 32px 0 0;
  color: #6b7280;
  font-size: 0.75rem;
}

.vs-service-price-table__button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  background: #000;
  color: #fff;
  padding: 0 32px;
  border: 1px solid #000;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.vs-service-price-table__button:hover,
.vs-service-price-table__button:focus-visible {
  background: #fff;
  color: #000;
  text-decoration: none;
}

.vs-service-faq {
  background: #fff;
}

.vs-service-faq__intro h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

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

.vs-service-faq__items > li:first-child .vs-service-faq-item {
  border-top: 1px solid rgb(0 0 0 / 0.1);
}

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

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

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

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

.vs-service-faq-item summary i::before,
.vs-service-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-service-faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

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

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

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

.vs-service-faq-item > div {
  max-width: 768px;
  padding: 0 0 32px;
}

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

  .vs-service-overview__copy p {
    font-size: 1.125rem;
  }

  .vs-service-hero__actions {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }

  .vs-service-hero__buttons {
    flex-direction: row;
    align-items: center;
  }

  .vs-service-hero__actions--stacked {
    flex-direction: column;
    align-items: flex-start;
  }

  .vs-service-price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

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

  .vs-service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    auto-rows: 1fr;
  }

  .vs-service-card {
    padding: 40px;
  }

  .vs-service-split-title {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .vs-service-split-title > div {
    display: flex;
    align-items: center;
    min-height: 240px;
    padding: 64px 48px;
  }
}

@media (min-width: 1024px) {
  .vs-desktop-break {
    display: inline;
  }

  .vs-desktop-nowrap {
    white-space: nowrap;
  }

  .vs-service-hero {
    padding: 160px 0 128px;
  }

  .vs-service-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 96px;
  }

  .vs-service-hero__media {
    grid-column: 2;
    grid-row: 1;
  }

  .vs-service-hero__actions {
    gap: 32px;
  }

  .vs-service-hero h1 {
    max-width: 1260px;
    font-size: clamp(5rem, 6vw, 5.35rem);
    line-height: 0.9;
  }

  .vs-service-overview__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 64px;
    row-gap: 48px;
  }

  .vs-service-overview__copy {
    grid-column: span 5;
  }

  .vs-service-card-grid {
    grid-column: span 7;
  }

  .vs-service-card h3 {
    min-height: 72px;
  }

  .vs-service-card p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .vs-service-list-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding: 64px 0;
  }

  .vs-service-list-row div {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
    gap: 64px;
    align-items: center;
  }

  .vs-service-list-row h3 {
    margin-bottom: 0;
  }

  .vs-service-platforms__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 80px;
  }

  .vs-service-platforms__grid > li > span svg {
    width: 32px;
    height: 32px;
  }

  .vs-service-workflow__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 96px;
  }

  .vs-service-workflow__sticky,
  .vs-service-faq__intro {
    position: sticky;
    top: 128px;
    align-self: start;
  }

  .vs-service-pricing__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 80px;
    align-items: start;
  }

  .vs-service-price-table {
    padding: 48px 40px;
  }

  .vs-service-faq__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 96px;
  }
}

@media (min-width: 1280px) {
  .vs-service-overview__grid {
    column-gap: 96px;
  }

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

  .vs-service-overview__copy p {
    font-size: 1.25rem;
  }

  .vs-service-card {
    padding: 48px;
  }

  .vs-service-card h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 2000px) {
  .vs-service-hero {
    padding-top: 208px;
  }
}

.vs-service-page--produktvideo .vs-service-hero h1 {
  max-width: 1152px;
  line-height: 1;
}

.vs-service-page--recruitingfilm .vs-service-hero h1 {
  max-width: 1280px;
  font-size: clamp(2.25rem, 9.5vw, 3.1rem);
  line-height: 0.95;
}

.vs-service-page--recruitingfilm .vs-service-hero h1 span {
  display: inline;
}

.vs-service-page--online-werbung .vs-service-hero h1 {
  max-width: 1220px;
  font-size: clamp(2.7rem, 10vw, 3.65rem);
  line-height: 0.94;
}

.vs-service-page--online-werbung .vs-service-hero h1 span {
  display: inline;
}

.vs-service-page--online-werbung .vs-service-overview .vs-container {
  overflow: hidden;
}

.vs-service-page--online-werbung .vs-service-overview {
  overflow: hidden;
}

.vs-service-page--online-werbung .vs-service-overview__grid,
.vs-service-page--online-werbung .vs-service-card-grid,
.vs-service-page--online-werbung .vs-service-card {
  min-width: 0;
}

.vs-online-campaigns,
.vs-online-channels,
.vs-online-budget {
  overflow: hidden;
  background: #fff;
  color: #000;
  padding: 96px 0;
}

.vs-online-channels {
  border-block: 0;
  background: #f8f8f8;
}

.vs-online-budget {
  border-top: 0;
  background: #000;
  color: #fff;
}

.vs-online-campaigns__intro,
.vs-online-channels__intro {
  max-width: 1040px;
  margin-bottom: 56px;
}

.vs-online-campaigns__intro h2,
.vs-online-channels__intro h2,
.vs-online-budget__intro h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 0.92;
}

.vs-online-campaigns__intro p,
.vs-online-channels__intro p,
.vs-online-budget__intro p {
  max-width: 820px;
  margin: 24px 0 0;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-online-budget__intro p {
  color: #d1d5db;
}

.vs-online-campaigns__grid,
.vs-online-channels__grid,
.vs-online-budget__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.vs-online-card,
.vs-online-budget-card {
  min-width: 0;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 32px;
}

.vs-online-card:nth-child(2n),
.vs-online-budget-card:nth-child(2n + 1) {
  border-color: #000;
  background: #000;
  color: #fff;
}

.vs-online-campaign-card:nth-child(2n) {
  border-color: #e5e7eb;
  background: #f1f1f1;
  color: #000;
}

.vs-online-campaign-card:nth-child(2n) p {
  color: #4b5563;
}

.vs-online-budget-card {
  min-height: 240px;
  border-color: rgb(255 255 255 / 0.18);
  background: rgb(255 255 255 / 0.08);
}

.vs-online-budget-card:nth-child(1),
.vs-online-budget-card:nth-child(4) {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.vs-online-budget-card:nth-child(1) p,
.vs-online-budget-card:nth-child(4) p {
  color: #4b5563;
}

.vs-online-budget-card:nth-child(2),
.vs-online-budget-card:nth-child(3) {
  border-color: rgb(255 255 255 / 0.18);
  background: rgb(255 255 255 / 0.08);
  color: #fff;
}

.vs-online-card svg {
  display: none;
  width: 24px;
  height: 24px;
  margin-bottom: 28px;
}

.vs-online-card h3,
.vs-online-budget-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vs-online-card p,
.vs-online-budget-card p {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-online-card:nth-child(2n) p,
.vs-online-budget-card p {
  color: #d1d5db;
}

.vs-online-campaign-card:nth-child(2n) p {
  color: #4b5563;
}

.vs-online-budget__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.vs-service-page--videobearbeitung .vs-service-hero h1 {
  max-width: 1180px;
  font-size: clamp(2.35rem, 9.2vw, 3.25rem);
  line-height: 0.95;
}

.vs-service-page--videobearbeitung .vs-service-hero h1 span {
  display: inline;
}

.vs-videoediting-overview {
  border-block: 0;
  background: #fff;
  color: #000;
  padding: 96px 0;
}

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

.vs-videoediting-overview__inner h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: none;
}

.vs-videoediting-overview__inner h2 span {
  color: #6b7280;
}

.vs-videoediting-overview__inner div {
  max-width: 860px;
}

.vs-videoediting-overview__inner p {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-videoediting-overview__inner p + p {
  margin-top: 20px;
}

.vs-service-page--produktvideo .vs-service-hero__copy p {
  margin-bottom: 24px;
}

.vs-service-page--produktvideo .vs-service-hero__copy p:last-of-type {
  margin-bottom: 40px;
}

.vs-service-page--produktvideo .vs-service-hero__overlay {
  display: none;
}

.vs-service-page--produktvideo .vs-service-split-title h2 {
  max-width: 980px;
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  line-height: 0.92;
}

.vs-product-editorial {
  border-block: 1px solid #e5e7eb;
  background: #f8f8f8;
  color: #000;
  padding: 96px 0;
}

.vs-product-editorial__stack {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.vs-product-editorial__block {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.vs-product-editorial__heading h2,
.vs-product-formats__intro h2,
.vs-product-format h3,
.vs-product-pricing__sticky h2,
.vs-product-pricing__panel h3 {
  margin: 0;
  font-weight: 900;
  line-height: 0.95;
}

.vs-product-editorial__heading h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.vs-product-editorial__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vs-product-editorial__lead {
  margin: 0;
  color: #4b5563;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.625;
}

.vs-product-editorial__lead strong,
.vs-product-editorial__note strong {
  color: #000;
  font-weight: 800;
}

.vs-product-editorial__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: -8px;
}

.vs-product-editorial__tags span {
  display: inline-flex;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.12);
  font-family: var(--vs-font-display);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.vs-product-editorial__tags span.is-light {
  background: #e0e0e0;
  color: #000;
}

.vs-product-editorial__note,
.vs-product-editorial__cards > li {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 32px;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.04);
}

.vs-product-editorial__note p,
.vs-product-editorial__cards p,
.vs-product-format p,
.vs-product-pricing p {
  margin: 0;
  color: #4b5563;
  font-weight: 500;
  line-height: 1.7;
}

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

.vs-product-editorial__cards h3 {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vs-product-editorial__cards > li.is-dark {
  border-color: #000;
  background: #000;
  color: #fff;
}

.vs-product-editorial__cards > li.is-dark h3 {
  color: #fff;
}

.vs-product-editorial__cards > li.is-dark p {
  color: #d1d5db;
}

.vs-product-formats {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #000;
  padding: 96px 0;
}

.vs-product-formats__grid-bg {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  width: 200px;
  height: 200px;
  opacity: 0.03;
  pointer-events: none;
}

.vs-product-formats__grid-bg i {
  width: 25%;
  height: 25%;
  border: 0.5px solid #000;
}

.vs-product-formats__intro {
  max-width: 896px;
  margin-bottom: 64px;
}

.vs-product-formats__intro h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.vs-product-formats__intro p {
  max-width: 768px;
  margin: 24px 0 0;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.vs-product-formats__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.vs-product-format {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}

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

.vs-product-format img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.vs-product-format figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.1);
  transition: background-color 0.5s;
}

.vs-product-format figure span,
.vs-product-format__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #000;
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.18);
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

.vs-product-format__play {
  border: 0;
  cursor: pointer;
}

.vs-product-format figure svg,
.vs-product-format__play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.vs-product-format:hover img {
  transform: scale(1.05);
}

.vs-product-format:hover figure::after {
  background: rgb(0 0 0 / 0.3);
}

.vs-product-format:hover figure span,
.vs-product-format:hover .vs-product-format__play {
  transform: translate(-50%, -50%) scale(1.1);
}

.vs-product-format h3 {
  margin-bottom: 24px;
  font-size: clamp(1.875rem, 4vw, 3rem);
}

.vs-product-format p {
  max-width: 576px;
  font-size: 1rem;
}

.vs-service-format-cards {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #000;
  padding: 96px 0;
}

.vs-service-format-cards__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.vs-service-format-cards__intro h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.vs-service-format-cards__intro p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

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

.vs-service-format-card {
  min-width: 0;
  min-height: 260px;
  background: #f1f1f1;
  padding: 28px;
}

.vs-service-format-card:nth-child(even) {
  background: #0b0b0b;
  color: #fff;
}

.vs-service-format-card > span {
  display: block;
  margin-bottom: 56px;
  color: rgb(0 0 0 / 0.18);
  font-family: var(--vs-font-display);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
}

.vs-service-format-card:nth-child(even) > span {
  color: rgb(255 255 255 / 0.22);
}

.vs-service-format-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.05;
}

.vs-service-format-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.vs-service-format-card:nth-child(even) p {
  color: #d1d5db;
}

.vs-product-pricing {
  border-top: 1px solid #f3f4f6;
  background: #fff;
  color: #000;
  padding: 64px 0;
}

.vs-product-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

.vs-product-pricing__sticky > span {
  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: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-product-pricing__sticky h2 {
  max-width: 620px;
  margin-bottom: 32px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.vs-product-pricing__sticky p {
  max-width: 448px;
  color: #6b7280;
  font-size: 1rem;
}

.vs-product-pricing__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.vs-product-pricing__panel h3 {
  border-bottom: 2px solid #000;
  margin-bottom: 32px;
  padding-bottom: 16px;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

.vs-product-pricing__table {
  width: 100%;
  border-collapse: collapse;
}

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

.vs-product-pricing-row:hover td {
  border-color: #000;
}

.vs-product-pricing-row span {
  display: inline-flex;
  gap: 14px;
  align-items: flex-start;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.vs-product-pricing-row span::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  margin-top: 0.12em;
  border: 1px solid #111;
  background: radial-gradient(circle at 50% 50%, #111 0 2px, transparent 3px);
}

.vs-product-pricing-row strong {
  display: block;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

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

.vs-product-pricing__subhead {
  border-bottom: 0 !important;
  margin-top: 48px !important;
  margin-bottom: 24px !important;
  padding-bottom: 0 !important;
}

.vs-recruiting-pricing__factors {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.vs-recruiting-pricing__factors li {
  position: relative;
  padding-left: 28px;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.vs-recruiting-pricing__factors li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #111;
  background: radial-gradient(circle at 50% 50%, #111 0 2px, transparent 3px);
  content: "";
}

.vs-recruiting-pricing__note {
  margin-top: 32px !important;
  color: #000 !important;
  font-weight: 800;
}

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

.vs-recruiting-pricing-card {
  min-height: 220px;
  border: 1px solid #e5e7eb;
  background: #f6f6f6;
  padding: 32px;
}

.vs-recruiting-pricing-card:nth-child(2n) {
  background: #000;
  color: #fff;
}

.vs-recruiting-pricing-card > span,
.vs-online-budget-card > span {
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 28px;
  border: 1px solid currentColor;
  background: radial-gradient(circle at 50% 50%, currentColor 0 2px, transparent 3px);
}

.vs-recruiting-pricing-card h3 {
  border: 0 !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem) !important;
  line-height: 1 !important;
}

.vs-recruiting-pricing-card p {
  margin: 0 !important;
  color: #4b5563 !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
}

.vs-recruiting-pricing-card:nth-child(2n) p {
  color: #d1d5db !important;
}

.vs-videoediting-pricing__table {
  table-layout: fixed;
}

.vs-videoediting-pricing__table thead {
  border-bottom: 1px solid #e5e7eb;
}

.vs-videoediting-pricing__table th {
  padding: 0 16px 18px 0;
  color: #111;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

.vs-videoediting-pricing__table th:first-child,
.vs-videoediting-pricing__table td:first-child {
  width: 30%;
  padding-right: 24px;
}

.vs-videoediting-pricing__table th:nth-child(2),
.vs-videoediting-pricing__table td:nth-child(2) {
  width: 50%;
}

.vs-videoediting-pricing__table th:last-child,
.vs-videoediting-pricing__table td:last-child {
  width: 20%;
}

.vs-videoediting-pricing__table td:first-child span {
  white-space: nowrap;
}

.vs-videoediting-pricing__table td:nth-child(2) {
  color: #4b5563;
  font-weight: 500;
  line-height: 1.7;
}

.vs-videoediting-pricing__table td:last-child,
.vs-videoediting-pricing__table th:last-child {
  text-align: right;
  white-space: nowrap;
}

.vs-service-page--imagefilm .vs-service-hero h1 {
  max-width: 1152px;
  line-height: 1;
}

.vs-service-page--imagefilm .vs-service-hero h1 span {
  display: inline;
}

.vs-image-strategy {
  border-block: 1px solid #e5e7eb;
  background: #fff;
  color: #000;
  padding: 96px 0;
}

.vs-image-strategy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

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

.vs-image-strategy__sticky h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 0.95;
}

.vs-image-strategy__steps {
  display: flex;
  flex-direction: column;
}

.vs-image-strategy-step {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
  padding: 0 0 64px;
  margin-bottom: 64px;
}

.vs-image-strategy-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.vs-image-strategy-step strong {
  width: 96px;
  flex: 0 0 auto;
  color: #d1d5db;
  font-family: var(--vs-font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}

.vs-image-strategy-step h3 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
}

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

.vs-service-page--schulungsvideo .vs-service-hero h1 {
  max-width: none;
  line-height: 0.95;
}

.vs-service-page--schulungsvideo .vs-service-hero h1 span {
  color: #6b7280;
}

.vs-service-page--schulungsvideo .vs-service-hero h1 .vs-service-hero__line-main {
  color: #fff;
}

.vs-service-page--schulungsvideo .vs-service-split-title h2 {
  text-transform: none;
}

.vs-training-formats,
.vs-training-scope,
.vs-training-pricing,
.vs-service-inline-cta {
  background: #fff;
  color: #000;
  padding: 96px 0;
}

.vs-training-formats,
.vs-training-pricing,
.vs-service-inline-cta {
  border-top: 1px solid #e5e7eb;
}

.vs-training-scope {
  border-block: 1px solid #e5e7eb;
  background: #f8f8f8;
  padding: 80px 0;
}

.vs-training-section-intro {
  max-width: 1024px;
  margin-bottom: 64px;
}

.vs-training-section-intro h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 0.95;
}

.vs-training-section-intro p {
  max-width: 768px;
  margin: 24px 0 0;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-training-format-grid,
.vs-training-scope-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.vs-training-format-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #ebebeb;
  padding: 32px;
}

.vs-training-format-card:nth-child(even) {
  background: #f5f5f5;
}

.vs-training-format-card h3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0 0 24px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 900;
  line-height: 1;
}

.vs-training-format-card h3 span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
}

.vs-training-format-card svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vs-training-format-card p,
.vs-training-scope-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-training-pricing p,
.vs-service-inline-cta p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-training-scope-grid {
  gap: 24px;
}

.vs-training-scope-card {
  border: 1px solid rgb(0 0 0 / 0.05);
  background: #fff;
  padding: 32px;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.04);
}

.vs-training-scope-card > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: #000;
  color: #fff;
  font-family: var(--vs-font-display);
  font-size: 1.25rem;
  font-weight: 900;
}

.vs-training-scope-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.05;
}

.vs-training-concept {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  padding: 48px 0 64px;
}

.vs-training-concept__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

.vs-training-concept__headline h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.vs-training-concept__headline h2 span {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 8px;
  padding: 4px 16px 8px;
  background: #fff;
  color: #000;
}

.vs-training-concept__content h3 {
  margin: 0 0 24px;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
}

.vs-training-concept__content > p {
  max-width: 672px;
  margin: 0 0 48px;
  color: #9ca3af;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-training-concept__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  border-top: 0;
  padding-top: 0;
}

.vs-training-concept__items h4 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.15;
}

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

.vs-training-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

.vs-training-pricing__sticky > span {
  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: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vs-training-pricing__sticky h2 {
  max-width: 620px;
  margin: 0 0 32px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 0.95;
}

.vs-training-pricing__sticky p {
  max-width: 448px;
}

.vs-training-pricing__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.vs-training-pricing__block h3 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 900;
  line-height: 0.9;
}

.vs-service-inline-cta {
  background: #f8f8f8;
  text-align: center;
}

.vs-service-inline-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vs-service-inline-cta h2 {
  margin: 0 0 24px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 0.95;
}

.vs-service-inline-cta p {
  max-width: 672px;
  margin-bottom: 40px;
  font-size: 1rem;
}

.vs-service-inline-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  padding: 20px 40px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

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

  .vs-online-campaigns__grid,
  .vs-online-channels__grid,
  .vs-online-budget__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-product-pricing-row td {
    padding: 24px 0;
  }

  .vs-product-pricing-row strong {
    white-space: nowrap;
  }
}

@media (min-width: 1024px) {
  .vs-service-page--produktvideo .vs-service-hero,
  .vs-service-page--imagefilm .vs-service-hero,
  .vs-service-page--online-werbung .vs-service-hero,
  .vs-service-page--recruitingfilm .vs-service-hero,
  .vs-service-page--videobearbeitung .vs-service-hero,
  .vs-service-page--schulungsvideo .vs-service-hero {
    padding-top: 192px;
  }

  .vs-service-page--produktvideo .vs-service-hero h1,
  .vs-service-page--imagefilm .vs-service-hero h1,
  .vs-service-page--online-werbung .vs-service-hero h1,
  .vs-service-page--recruitingfilm .vs-service-hero h1,
  .vs-service-page--videobearbeitung .vs-service-hero h1 {
    font-size: clamp(5.5rem, 6vw, 6rem);
  }

  .vs-service-page--online-werbung .vs-service-hero h1 {
    font-size: clamp(4.4rem, 5.6vw, 6rem);
  }

  .vs-service-page--imagefilm .vs-service-hero h1 {
    max-width: 1400px;
    font-size: clamp(4.65rem, 5.2vw, 5.65rem);
    line-height: 0.95;
  }

  .vs-service-page--recruitingfilm .vs-service-hero h1 {
    max-width: 1580px;
    font-size: clamp(3.5rem, 4.1vw, 5rem);
    line-height: 0.94;
  }

  .vs-service-page--videobearbeitung .vs-service-hero h1 {
    font-size: clamp(3.75rem, 4.9vw, 5.5rem);
  }

  .vs-videoediting-overview__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);    gap: 96px;
    align-items: start;
  }

  .vs-online-campaigns,
  .vs-online-channels,
  .vs-online-budget {
    padding: 128px 0;
  }

  .vs-online-campaigns__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 96px;
    align-items: start;
    max-width: none;
  }

  .vs-online-campaigns__intro p {
    max-width: 780px;
    margin-top: 0;
  }

  .vs-online-campaigns__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .vs-online-campaign-card {
    grid-column: span 2;
    min-height: 320px;
  }

  .vs-online-campaign-card:nth-child(4),
  .vs-online-campaign-card:nth-child(5) {
    grid-column: span 3;
    min-height: 280px;
  }

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

  .vs-online-channel-card {
    min-height: 320px;
  }

  .vs-online-budget__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 96px;
    align-items: start;
  }

  .vs-online-budget__intro {
    position: sticky;
    top: 128px;
  }

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

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

  .vs-service-page--schulungsvideo .vs-service-hero h1 {
    font-size: clamp(3.5rem, 4.2vw, 5.3rem);
  }

  .vs-service-page--schulungsvideo .vs-service-hero h1 .vs-service-hero__line-main {
    white-space: nowrap;
  }

  .vs-service-page--schulungsvideo .vs-service-split-title h2 {
    font-size: clamp(2.25rem, 3.4vw, 3rem);
  }

  .vs-training-formats,
  .vs-training-pricing {
    padding: 128px 0;
  }

  .vs-training-scope {
    padding: 112px 0;
  }

  .vs-training-section-intro {
    margin-bottom: 80px;
  }

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

  .vs-training-format-card {
    padding: 48px;
  }

  .vs-training-scope-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .vs-training-concept {
    padding: 128px 0;
  }

  .vs-training-concept__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.42fr);
    gap: 96px;
  }

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

  .vs-training-concept__items .is-wide {
    grid-column: span 2;
    width: 50%;
  }

  .vs-training-pricing__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 96px;
  }

  .vs-training-pricing__sticky {
    position: sticky;
    top: 128px;
  }

  .vs-image-strategy {
    padding: 128px 0;
  }

  .vs-image-strategy__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 96px;
  }

  .vs-image-strategy__sticky {
    position: sticky;
    top: 128px;
  }

  .vs-image-strategy-step {
    flex-direction: row;
    gap: 64px;
    padding-bottom: 96px;
    margin-bottom: 96px;
  }

  .vs-product-editorial,
  .vs-product-formats {
    padding: 128px 0;
  }

  .vs-product-editorial__stack {
    gap: 128px;
  }

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

  .vs-product-editorial__block.is-reverse .vs-product-editorial__heading {
    order: 2;
  }

  .vs-product-editorial__block.is-reverse .vs-product-editorial__content {
    order: 1;
  }

  .vs-product-formats__grid-bg {
    width: 300px;
    height: 300px;
  }

  .vs-product-formats__intro {
    margin-bottom: 96px;
  }

  .vs-product-formats__list {
    gap: 96px;
  }

  .vs-product-format {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    align-items: center;
  }

  .vs-product-format.is-reverse figure {
    order: 2;
  }

  .vs-product-format.is-reverse > div {
    order: 1;
  }

  .vs-product-pricing {
    padding: 128px 0;
  }

  .vs-product-pricing__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 96px;
  }

  .vs-product-pricing__sticky {
    position: sticky;
    top: 128px;
  }

  .vs-product-pricing__content {
    gap: 96px;
  }
}

.vs-service-page--animation .vs-service-hero h1 {
  max-width: 1152px;
  line-height: 1;
}

.vs-service-page--animation .vs-service-hero h1 span {
  color: #6b7280;
}

.vs-service-page--animation .vs-service-hero h1 .vs-service-hero__line-main {
  color: #fff;
}

.vs-service-page--animation .vs-service-split-title h2 {
  text-transform: none;
}

.vs-service-page--animation .vs-service-workflow__sticky h2 {
  font-size: clamp(2rem, 8vw, 2.5rem);
  line-height: 0.9;
}

.vs-service-page--animation .vs-service-workflow-step h3 {
  font-size: 1.2rem;
  line-height: 0.95;
}

.vs-animation-services {
  overflow: hidden;
  border-block: 1px solid rgb(255 255 255 / 0.1);
  background: #0a0a0a;
  color: #fff;
  padding: 96px 0;
}

.vs-animation-services__intro {
  max-width: 896px;
  margin-bottom: 64px;
}

.vs-animation-services__intro h2,
.vs-animation-choice__intro h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
}

.vs-animation-services__intro h2,
.vs-service-page--animation .vs-training-section-intro h2 {
  font-size: clamp(2rem, 8vw, 2.5rem);
}

.vs-animation-services__intro p,
.vs-animation-video-row__copy p,
.vs-animation-service-card p {
  color: #9ca3af;
}

.vs-animation-services__intro p,
.vs-animation-choice__intro p,
.vs-animation-video-row__copy p,
.vs-animation-service-card p,
.vs-animation-choice-card p,
.vs-animation-pricing p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-animation-services__intro p,
.vs-animation-choice__intro p {
  max-width: 768px;
  margin-top: 24px;
}

.vs-animation-video-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 48px;
}

.vs-animation-video-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 0.05);
  background: rgb(255 255 255 / 0.02);
  padding: 24px;
}

.vs-animation-video-row__copy > span,
.vs-animation-service-card > span {
  display: block;
  margin-bottom: 16px;
  color: rgb(255 255 255 / 0.2);
  font-family: var(--vs-font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.vs-animation-video-row__copy h3,
.vs-animation-service-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
}

.vs-animation-video-row__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: #000;
}

.vs-animation-video-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 0.7s, opacity 0.7s;
}

.vs-animation-video-row__media:hover img {
  transform: scale(1.05);
  opacity: 0.92;
}

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

.vs-animation-video-row__play svg {
  width: 64px;
  height: 64px;
  padding: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.55);
  fill: currentColor;
}

.vs-animation-service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.vs-animation-service-card {
  border: 1px solid rgb(255 255 255 / 0.05);
  background: rgb(255 255 255 / 0.02);
  padding: 32px;
}

.vs-animation-final-files,
.vs-animation-choice,
.vs-animation-pricing {
  background: #fff;
  color: #000;
  padding: 96px 0;
}

.vs-animation-final-files {
  border-top: 1px solid #f3f4f6;
}

.vs-animation-final-files__inner {
  max-width: 920px;
}

.vs-animation-final-files__inner h2 {
  margin: 0 0 28px;
  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;
}

.vs-animation-final-files__inner p {
  max-width: 780px;
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vs-animation-final-files__inner p + p {
  margin-top: 20px;
}

.vs-imagefilm-credibility {
  background: #fff;
  color: #000;
  padding: 96px 0;
}

.vs-imagefilm-credibility__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.vs-imagefilm-credibility__intro h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--vs-font-display);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vs-imagefilm-credibility__intro > p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

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

.vs-imagefilm-credibility-card {
  min-height: 100%;
  border: 1px solid #e5e7eb;
  background: #f8f8f8;
  padding: 28px 28px 36px;
}

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

.vs-imagefilm-credibility-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vs-imagefilm-credibility-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.vs-animation-choice__intro {
  max-width: 896px;
  margin-bottom: 64px;
}

.vs-animation-choice__intro p,
.vs-animation-choice-card p,
.vs-animation-pricing p {
  color: #6b7280;
}

.vs-animation-choice__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.vs-animation-choice-card h3 {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.vs-animation-choice-card h3 span {
  color: #d1d5db;
}

.vs-animation-pricing {
  border-top: 1px solid #f3f4f6;
}

.vs-animation-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

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

.vs-animation-pricing__sticky h2 {
  max-width: 640px;
  margin: 0 0 32px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
}

.vs-animation-pricing__sticky p {
  max-width: 448px;
  font-size: 1.125rem;
}

.vs-animation-pricing__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.vs-animation-pricing__prices h3 {
  margin: 0 0 32px;
  border-bottom: 2px solid #000;
  padding-bottom: 16px;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 900;
  line-height: 0.9;
}

.vs-animation-pricing__table {
  width: 100%;
  border-collapse: collapse;
}

.vs-animation-pricing__table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
  color: #111827;
}

.vs-animation-pricing__prices span {
  font-weight: 500;
  line-height: 1.35;
}

.vs-animation-pricing__prices strong {
  display: block;
  color: #000;
  font-weight: 800;
}

.vs-animation-pricing__table td:last-child {
  padding-left: 20px;
}

.vs-animation-pricing__blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-top: 1px solid #e5e7eb;
  padding-top: 48px;
}

.vs-animation-pricing-card {
  background: #f5f5f5;
  padding: 32px;
}

.vs-animation-pricing-card > span {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: #000;
  color: #fff;
}

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

.vs-animation-pricing-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.05;
}

.vs-animation-pricing__note {
  margin-top: 8px;
}

@media (min-width: 640px) {
  .vs-service-page--animation .vs-service-workflow-step h3 {
    font-size: 2.75rem;
  }

  .vs-animation-pricing__prices strong {
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .vs-service-format-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-animation-service-cards,
  .vs-animation-pricing__blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-animation-pricing__note {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .vs-service-page--animation .vs-service-hero {
    padding-top: 192px;
  }

  .vs-service-page--animation .vs-service-hero h1 {
    font-size: clamp(4.25rem, 5.2vw, 5.35rem);
  }

  .vs-service-page--animation .vs-service-hero h1 .vs-service-hero__line-main {
    white-space: nowrap;
  }

  .vs-service-page--animation .vs-service-workflow__sticky h2 {
    font-size: clamp(4rem, 4.5vw, 4.5rem);
  }

  .vs-animation-services,
  .vs-animation-choice,
  .vs-animation-pricing,
  .vs-service-format-cards {
    padding: 128px 0;
  }

  .vs-service-format-cards__intro {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 64px;
    align-items: start;
    margin-bottom: 80px;
  }

  .vs-service-format-cards__intro p {
    padding-top: 8px;
  }

  .vs-service-format-cards--imagefilm .vs-service-format-cards__grid,
  .vs-service-format-cards--recruiting .vs-service-format-cards__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vs-animation-services__intro,
  .vs-animation-choice__intro {
    margin-bottom: 96px;
  }

  .vs-animation-services__intro h2,
  .vs-service-page--animation .vs-training-section-intro h2 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
  }

  .vs-animation-video-list {
    gap: 64px;
    margin-bottom: 64px;
  }

  .vs-animation-video-row {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 48px;
    padding: 40px;
  }

  .vs-animation-video-row__copy {
    grid-column: span 5;
  }

  .vs-animation-video-row__media {
    grid-column: span 7;
  }

  .vs-animation-video-row.is-reverse .vs-animation-video-row__copy {
    order: 2;
  }

  .vs-animation-video-row.is-reverse .vs-animation-video-row__media {
    order: 1;
  }

  .vs-animation-service-card {
    padding: 48px;
  }

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

  .vs-animation-pricing__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 96px;
  }

  .vs-animation-pricing__sticky {
    position: sticky;
    top: 128px;
  }

  .vs-animation-pricing__content {
    gap: 64px;
  }
}

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

  .vs-service-price-row {
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
    padding: 14px 0;
  }

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

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

  .vs-product-pricing__table,
  .vs-product-pricing__table tbody,
  .vs-product-pricing-row,
  .vs-product-pricing-row td,
  .vs-animation-pricing__table,
  .vs-animation-pricing__table tbody,
  .vs-animation-pricing__table tr,
  .vs-animation-pricing__table td {
    display: block;
  }

  .vs-product-pricing-row,
  .vs-animation-pricing__table tr {
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
    padding: 14px 0;
  }

  .vs-animation-pricing__table tr {
    border-color: #e5e7eb;
  }

  .vs-product-pricing-row td,
  .vs-animation-pricing__table td {
    border-bottom: 0;
    padding: 0;
  }

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

  .vs-videoediting-pricing__table td:first-child span,
  .vs-videoediting-pricing__table td:last-child,
  .vs-videoediting-pricing__table th:last-child,
  .vs-service-price-row strong,
  .vs-service-price-row td:last-child {
    width: auto;
    white-space: normal;
  }
}

@media (min-width: 768px) {
  .vs-imagefilm-credibility__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .vs-imagefilm-credibility__intro {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
  }

  .vs-imagefilm-credibility__intro > p {
    padding-top: 8px;
  }
}

.vs-service-page > section {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-block: 0 !important;
}
