.vm-company {
  background: #f6f6f6;
  color: #111;
  line-height: 1.7;
}

.vm-company-hero {
  padding: 96px 0 80px;
  background: linear-gradient(140deg, #ffffff 0%, #f3f3f3 60%, #f8f8f8 100%);
}

.vm-company-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.vm-company-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vm-accent, #b000ff);
  margin-bottom: 10px;
}

.vm-company-hero__title {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  line-height: 1.25;
  margin: 0 0 14px;
}

.vm-company-hero__lead {
  font-size: 1.05rem;
  color: #444;
  margin: 0 0 14px;
}

.vm-company-hero__text {
  margin: 0;
  color: #555;
}

.vm-company-hero__panel {
  background: #fff;
  border-radius: 22px;
  padding: 26px 28px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.vm-company-section {
  padding: 72px 0;
}

.vm-company-section__head {
  max-width: 720px;
  margin-bottom: 28px;
}

.vm-company-section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vm-accent, #b000ff);
  margin-bottom: 8px;
}

.vm-company-section__title {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  margin: 0 0 10px;
}

.vm-company-section__lead {
  margin: 0;
  color: #555;
}

.vm-company-editor__content {
  background: #fff;
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.vm-company-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vm-company-value {
  background: #fff;
  border-radius: 20px;
  padding: 20px 22px;
  border: 1px solid #eee;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.vm-company-value__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.vm-company-value__text {
  margin: 0;
  color: #555;
}

.vm-company-profile {
  background: #fff;
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.vm-company-profile__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.vm-company-profile__row:last-child {
  border-bottom: none;
}

.vm-company-profile__label {
  font-weight: 600;
  color: #333;
}

.vm-company-profile__value {
  margin: 0;
  color: #555;
}

.vm-company-access {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.vm-company-access__card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}

.vm-company-access__note {
  margin: 8px 0 0;
  color: #555;
}

.vm-company-access__placeholder {
  border-radius: 20px;
  background: linear-gradient(135deg, #efefef, #f7f7f7);
  border: 1px dashed #ddd;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.95rem;
}

.vm-company-history {
  display: grid;
  gap: 14px;
}

.vm-company-history__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.vm-company-history__year {
  font-weight: 700;
  color: #333;
}

.vm-company-history__desc {
  margin: 0;
  color: #555;
}

@media (max-width: 960px) {
  .vm-company-hero__inner {
    grid-template-columns: 1fr;
  }

  .vm-company-values {
    grid-template-columns: 1fr;
  }

  .vm-company-access {
    grid-template-columns: 1fr;
  }

  .vm-company-profile__row {
    grid-template-columns: 1fr;
  }

  .vm-company-history__item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vm-company-section {
    padding: 60px 0;
  }

  .vm-company-hero {
    padding: 80px 0 64px;
  }

  .vm-company-profile {
    padding: 24px;
  }
}
