<head>
	<style>
			body, .notion-frame {
					background: linear-gradient(#EBF2FF, #FBFCFF, white) !important;
					background-attachment: fixed !important;
					max-width: 3500px !important;
					}
		
		.css-1rqgsto {
					margin-top: 50px !important;
					}

	
		.page-title {
					font-size:45px !important;
					}
		
		.css-1ydqfte {
					margin-top: 60px !important;
					}

			.css-1l4g0e8 {
					width:0% !important;
					}
.css-1opiqyw {
					pointer-events : none !important;
					}

			.main-button {
							display: flex;
							align-items: center;
							justify-content: center;
							width: 100%;
							height: 55px;
							border: 1px solid;
							border-radius: 15px;
							font-weight: bold;
							font-size: 17px;
							color: white;
							text-decoration: none;
							background-color: #1C6EFF;
							border-color: #649CFF;
							transition: 300ms;
				}
				.main-button:hover {
							color: white;
							background: #0047C8;
				}
				.sub-button {
							display: flex;
							align-items: center;
							justify-content: center;
							width: 100%;
							height: 55px;
							border: 1px solid;
							border-radius: 15px;
							font-weight: bold;
							font-size: 17px;
							color: #1D6BFF;
							text-decoration: none;
							background-color: white;
							border-color: #649CFF;
							transition: 300ms;
				}
				.sub-button:hover {
							color: #0052E6;
							background: #dbe8ff;
				}
				.main-button-fake {
							display: none;
				}
				.button-wrapper {
							display: grid;
					    position: relative;
					    grid-template-columns: repeat( auto-fill, minmax(200px, 200px) );
					    grid-auto-rows: 1fr;
					    gap: 16px;
					    border-top: 0px solid rgba(255,255,255,0.14);
				}

:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

.page-content {
  display: grid;
  grid-gap: 1rem;
  max-width: 1024px;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  margin: 0 auto;
}

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
	border-radius: 15px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 5.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}
.card:nth-child(1):before {
  background-image: url(<https://storage.pardot.com/843433/1650783581IyjqNjLF/__________________.png>);
}
.card:nth-child(2):before {
  background-image: url(<https://storage.pardot.com/843433/1650783581IyjqNjLF/__________________.png>);
}
.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}
.content > * + * {
  margin-top: 1rem;
}

.title {
	font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.copy {
  font-size: 1.125rem;
  line-height: 1.35;
	text-align: left;
}
  .content {
    transform: translateY(calc(50% - 4.5rem));
  }
  .content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .card:hover,
.card:focus-within {
    align-items: center;
  }
  .card:hover:before,
.card:focus-within:before {
    transform: translateY(-4%);
  }
  .card:hover:after,
.card:focus-within:after {
    transform: translateY(-50%);
  }
  .card:hover .content,
.card:focus-within .content {
    transform: translateY(0);
  }
  .card:hover .content > *:not(.title),
.card:focus-within .content > *:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .card:focus-within:before, .card:focus-within:after,
.card:focus-within .content,
.card:focus-within .content > *:not(.title) {
    transition-duration: 0s;
  }
}

			.main-button {
							display: flex;
							align-items: center;
							justify-content: center;
							width: 100%;
							height: 55px;
							border: 1px solid;
							border-radius: 15px;
							font-weight: bold;
							font-size: 17px;
							color: white;
							text-decoration: none;
							background-color: #1C6EFF;
							border-color: #649CFF;
							transition: 300ms;
				}
				.main-button:hover {
							color: white;
							background: #0047C8;
				}
				.sub-button {
							display: flex;
							align-items: center;
							justify-content: center;
							width: 100%;
							height: 55px;
							border: 1px solid;
							border-radius: 15px;
							font-weight: bold;
							font-size: 17px;
							color: #1D6BFF;
							text-decoration: none;
							background-color: white;
							border-color: #649CFF;
							transition: 300ms;
				}
				.sub-button:hover {
							color: #0052E6;
							background: #dbe8ff;
				}
				.main-button-fake {
							display: none;
				}
				.button-wrapper {
							display: grid;
					    position: relative;
					    grid-template-columns: repeat( auto-fill, minmax(200px, 200px) );
					    grid-auto-rows: 1fr;
					    gap: 16px;
					    border-top: 0px solid rgba(255,255,255,0.14);
				}

/* Accordion Container */

ul {
   list-style: none; 
   margin:0;
   padding: 0;
   background-color: white;
   border-radius: 3px;
}

.accordionTitle {
   padding: 10px; 
   padding-left: 20px;
   position: relative;
   margin: 0;
   font-size: 16px;
   font-weight: 500;
   color: #262626;
   transition: ease-in-out 0.2s all;
   cursor: pointer;
}

.accordionTitle:hover {
   padding-left: 30px;
   font-weight: bold;
	color: #005cff;
} 

/* Accordion Item line */
.accordionTitle:before,
.accordionTitle:after {
   content:'';
   position: absolute;
   height: 2px;
   border-radius: 50px;
   transition: ease-in-out 0.6s all;
   bottom: 0;
   left: 0;
   display: flex;
   justify-content: center;
   align-items: center;
}

.accordionTitle:before {
   width: 100%;
   background-color: #C5DAFF;
}
.accordionTitle:after {
   background-image: linear-gradient(90deg, #005cff, #C5DAFF);
   width: 0%;
}

.accordionTitle:hover::after {
   width: 100%;
}

/* Accordion Item line - Active */
.accordionTitleActive:after {
   content:'';
   position: absolute;
   height: 2px;
   border-radius: 50px;
   transition: ease-in-out 0.6s all;
   bottom: 0;
   left: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   
}

.accordionTitleActive:after {
   background-image: linear-gradient(90deg, #005CFF, #C5DAFF);
   width: 100%;
}

/* Accordion Item Icon  */
.accIcon {
   float: right;
   width: 30px;
   height: 30px;
   display: flex;
   margin-top: -3px;
   align-items: center;
   justify-content: center;
}

.accIcon:before,
.accIcon:after {
   content:'';
   position: absolute;
   border-radius: 50px;
   background-color: #C5DAFF;
   transition: ease 0.3s all;
}

.accIcon:before {
   width: 2px;
   height: 20px;
}

.accIcon:after {
   width: 20px;
   height: 2px;
}

.accordionTitle:hover .accIcon:before,
.accordionTitle:hover .accIcon:after {
   background-color: #005CFF;
}

.accIcon.anime.accIcon:before {
   transform: rotate(90deg);
}

/* Text Content */
.accordion .item .text {
   opacity: 0;
   height: 0;
   padding: 0px 20px;
   position: relative;
   line-height: 26px;
   font-size: 16px;
   transition: all 0.6s cubic-bezier(.42,.2,.08,1);
   overflow: hidden;
   background-color: #EEF1F8;
}

/* Text Content - Class for JS to hide and show */
.accordion .item .text.show {
   opacity: 1;
   height: auto;
   padding: 25px 50px;
   position: relative;
   z-index: 0;
   border-radius: 0px 0px 3px 3px;
}
</style>

<script type="text/javascript">
piAId = '844433';
piCId = '127994';
piHostname = 'pi.pardot.com';

(function() {
	function async_load(){
		var s = document.createElement('script'); s.type = 'text/javascript';
		s.src = ('https:' == document.location.protocol ? '<https://pi>' : '<http://cdn>') + '.pardot.com/pd.js';
		var c = document.getElementsByTagName('script')[0]; c.parentNode.insertBefore(s, c);
	}
	if(window.attachEvent) { window.attachEvent('onload', async_load); }
	else { window.addEventListener('load', async_load, false); }
})();
</script>

</head>
<span style="font-size:17px;color: #232C3E;">해결하고 싶은 비즈니스 고민이 있다면, 오픈서베이 팀에게 전달해주세요.<br>
모든 항목이 구체적으로 정리되지 않은 상황이어도 괜찮습니다. 오픈서베이 팀에서 적절한 데이터 솔루션을 제안해 드립니다.
</span>
<main class="page-content">
  <div class="card" onclick="window.open('<https://contents.opensurvey.co.kr/playbook-estimate>')" style="cursor:pointer;">
    <div class="content">
      <h2 class="title">솔루션 추천이 함께 필요해요</h2>
      <p class="copy">대략적인 견적 범위와 최적의 솔루션을 함께 파악하고 조사에 대한 방향을 잡고 싶을 때<br> </p>
    </div>
  </div>
  <div class="card" onclick="window.open('<https://contents.opensurvey.co.kr/opsv-inquiry>')" style="cursor:pointer;">
    <div class="content">
      <h2 class="title">정확한 견적 확인이 필요해요</h2>
      <p class="copy">고려하고 계신 조사의 방향이 비교적 명확하여, 정확한 견적 확인 및 빠른 프로젝트 진행이 필요할 때</p>
    </div>
  </div>
</main>
<br>
<br>
  <ul class="accordion">
      <li class="item">
         <h2 class="accordionTitle">조사에 대한 구체적인 방향 및 고려 사항을 더욱 명확하게 전달하고 싶다면?<span class="accIcon"></span></h2>
      <div class="text">
오픈서베이의 견적은 응답자의 조건/수, 문항 수, 전반적인 난이도 등을 종합적으로 고려하여 책정됩니다.<br>
아래 버튼을 눌러 To-know list를 내려받아 조사 개요를 작성하신 뒤 이메일(<a href="mailto:nurturing@opensurvey.co.kr" title="문의하기">nurturing@opensurvey.co.kr</a>)로 보내주세요.<br>
2영업일 이내에 연락드리겠습니다.<br>
<br><span style="font-weight:600;background: linear-gradient(to top, #BDFBFF 40%, transparent 50%); cursor: pointer;" onclick="window.open('<https://contents.opensurvey.co.kr/opensurvey_to-know-list>')">To-know list 다운받기 →</span>	
<br><span style="font-weight:600;background: linear-gradient(to top, #BDFBFF 40%, transparent 50%); cursor: pointer;" onclick="window.open('<https://hello.opensurvey.co.kr/tkl>')">작성하는 방법 자세히 보기 →</span>	
<br><br><br>
<b>To-know list 작성 후 다음과 같은 순서로 프로젝트가 진행됩니다.</b><br>
<span style="margin-left: 20px; font-size: 16px;">1. 조사 개요 확인 후 몇 가지 세부 사항 확인차 연락을 드릴 수 있습니다.</span>
<br><span style="margin-left: 20px; font-size: 16px;">2. 견적 안내부터 프로젝트 운영까지 꼼꼼히 안내드릴 수 있도록 전담 매니저를 배정해 드립니다.</span>
<br><span style="margin-left: 20px; font-size: 16px;">3. 전담 매니저가 세부 내용을 확인한 후 파일럿 테스트(견적 안내를 위한 내부 참고용 조사)를 진행합니다.</span>
<br><span style="margin-left: 20px; font-size: 16px;">4. 파일럿 테스트 결과를 참고하여 견적 및 예상 소요 일정을 안내해드립니다.</span>
<br><span style="margin-left: 20px; font-size: 16px;">5. 견적 확정 후에는 협의된 일정에 맞춰 프로젝트가 진행됩니다.</span>
</div>
       </li>
   </ul>

<script>
				// variables
				var accordionBtn = document.querySelectorAll('.accordionTitle');
				var allTexts = document.querySelectorAll('.text');
				var accIcon = document.querySelectorAll('.accIcon');
				
				// event listener
				accordionBtn.forEach(function (el) {
				    el.addEventListener('click', toggleAccordion)
				});
				
				// function
				function toggleAccordion(el) {
				   var targetText = el.currentTarget.nextElementSibling.classList;
				   var targetAccIcon = el.currentTarget.children[0];
				   var target = el.currentTarget;
				   
				   if (targetText.contains('show')) {
				       targetText.remove('show');
				       targetAccIcon.classList.remove('anime');
				       target.classList.remove('accordionTitleActive');
				   } 
				   else {
				      accordionBtn.forEach(function (el) {
				         el.classList.remove('accordionTitleActive');
				         
				         allTexts.forEach(function (el) {
				            el.classList.remove('show');
				         })
				         
				         accIcon.forEach(function (el) {
				          el.classList.remove('anime');
				         }) 
				         
				      })
				      
				         targetText.add('show');
				         target.classList.add('accordionTitleActive');
				         targetAccIcon.classList.add('anime');
				   }  
				}
</script>

</body>

소비자 조사가 처음이라면 확실히 알고 시작하는 게 좋습니다.

조사 전에 꼭 고민해봐야 하는 부분, 정리가 필요한 항목, 프로세스, 소요 일정, 가격 체계 등을 전반적으로 설명해드립니다.

<div class="button-wrapper">
<a class="main-button" target=_blank href="<https://contents.opensurvey.co.kr/opensurvey-meet>">
서비스 소개 들어보기</a>
<a class="main-button-fake">		
</a></div>