/* VCworks 전용 스타일 */

/* 플로팅 네비게이션 스타일 */
#floating-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 1000;
  display: none;
  overflow: visible;
  max-height: none;
}

#floating-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 3px;
}

#floating-nav li {
  margin: 0;
  text-align: center;
}

#floating-nav a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: #555;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.3s ease;
}

#floating-nav a.active {
  background-color: #3182F6;
  color: white;
}

#floating-nav a:hover {
  background-color: #eaeaea;
}

#floating-nav a.active:hover {
  background-color: #2667C5;
}

/* 툴팁 스타일 */
#floating-nav .tooltip {
  position: relative;
}

#floating-nav .tooltip-text {
  visibility: hidden;
  width: 140px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  right: 45px;
  top: 5px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

#floating-nav .tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {
  #floating-nav {
    right: 10px;
    padding: 5px;
  }

  #floating-nav a {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 10px;
  }

  #floating-nav ul {
    grid-gap: 2px;
  }

  #floating-nav .tooltip-text {
    width: 100px;
    font-size: 10px;
    right: 35px;
  }
}

/* 스크롤 위로 버튼 스타일 */
#scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #3182F6;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: none;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

#scroll-top-btn:hover {
  background-color: #2667C5;
}

/* 슬라이드 재생 버튼 스타일 */
.slide-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b46c1, #4a2899);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slide-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #7c58d3, #5a36aa);
}

.slide-play-btn.playing i {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

/* VCworks 페이지의 중앙 정렬 개선 */
.product-page.vcworks section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 푸터의 container는 일반 스타일 사용 */
.product-page.vcworks .main-footer .container {
  display: block;
  align-items: normal;
}

.product-page.vcworks .key-feature-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.product-page.vcworks .key-feature {
  text-align: center;
  margin: 0 auto;
}

.product-page.vcworks .feature-screenshot {
  display: block;
  margin: 2rem auto;
}

.product-page.vcworks .feature-interview {
  margin: 2rem auto;
}

.product-page.vcworks .features-section {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
}

.product-page.vcworks .works-diagram {
  text-align: center;
}

.product-page.vcworks .works-features-section {
  text-align: center;
}

/* 사용자 뱃지 색상 보강 */
.user-badge {
  color: white !important;
}

.user-badge.vc-management,
.user-badge.vc-reviewer,
.user-badge.vc-key-staff,
.user-badge[class*="vc-"] {
  background-color: #8a6bc1 !important;
}

.user-badge.startup-cfo,
.user-badge.startup-ceo,
.user-badge[class*="startup-"] {
  background-color: #4caf50 !important;
}

.user-badge.lp,
.user-badge[class*="lp-"] {
  background-color: #4a7fd3 !important;
}

/* 자동 스크롤 버튼 스타일 */
.btn.auto-scrolling {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border-color: #ee5a24;
  animation: pulse-button 1.5s infinite;
}

@keyframes pulse-button {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* VCworks의 중앙정렬된 리스트 스타일 */
.product-page.vcworks .key-feature-content ul {
  text-align: center;
  display: inline-block;
}

.product-page.vcworks .key-feature-content li {
  text-align: left;
}

/* VCworks Contact 섹션 모던 스타일 */
.product-page.vcworks .contact-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.product-page.vcworks .contact-card {
  background: linear-gradient(135deg, rgba(49, 130, 246, 0.08) 0%, rgba(49, 130, 246, 0.02) 100%);
  border: 1px solid rgba(49, 130, 246, 0.2);
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}

.product-page.vcworks .contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(49, 130, 246, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-page.vcworks .contact-card:hover::before {
  opacity: 1;
}

.product-page.vcworks .contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(49, 130, 246, 0.4);
  box-shadow: 0 20px 40px rgba(49, 130, 246, 0.2), 0 0 60px rgba(49, 130, 246, 0.1);
}

.product-page.vcworks .contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #3182F6 0%, #2667C5 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.product-page.vcworks .contact-card:hover .contact-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 25px rgba(49, 130, 246, 0.3);
}

.product-page.vcworks .contact-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.product-page.vcworks .contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.product-page.vcworks .contact-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #BCC7D7;
  margin-bottom: 35px;
  min-height: 50px;
}

.product-page.vcworks .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3182F6 0%, #2667C5 100%);
  color: white;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.3px;
  box-shadow: 0 4px 15px rgba(49, 130, 246, 0.3);
}

.product-page.vcworks .contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease;
}

.product-page.vcworks .contact-btn:hover::before {
  width: 100%;
}

.product-page.vcworks .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(49, 130, 246, 0.4);
  background: linear-gradient(135deg, #2667C5 0%, #1E52A0 100%);
}

/* 순서별 강조 효과 */
.product-page.vcworks .contact-card:nth-child(1) {
  order: 1;
}

.product-page.vcworks .contact-card:nth-child(2) {
  order: 2;
}

.product-page.vcworks .contact-card:nth-child(3) {
  order: 3;
}

/* 번호 뱃지 추가 */
.product-page.vcworks .contact-card::after {
  content: attr(data-step);
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: rgba(49, 130, 246, 0.1);
  border: 1px solid rgba(49, 130, 246, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #3182F6;
}

/* VCworks 이미지 hover 효과 */
.screenshot-image, 
.works-img, 
.dashboard-img, 
.feature-map-image {
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.screenshot-image:hover, 
.works-img:hover, 
.dashboard-img:hover, 
.feature-map-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 이미지 컨테이너 hover 시 안내 텍스트 */
.feature-screenshot::before,
.works-diagram::before,
.dashboard-image::before,
.works-features-section::before {
    content: "🔍 클릭하여 확대";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.feature-screenshot:hover::before,
.works-diagram:hover::before,
.dashboard-image:hover::before,
.works-features-section:hover::before {
    opacity: 1;
}

/* 이미지 컨테이너 position relative 설정 */
.feature-screenshot,
.works-diagram,
.dashboard-image,
.works-features-section {
    position: relative;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
  .product-page.vcworks .contact-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
  
  .product-page.vcworks .contact-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .product-page.vcworks .contact-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Contact 섹션 파티클 캔버스 스타일 */
.product-page.vcworks .contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e1a 0%, #0f1729 100%);
  border-top: 3px solid #3182F6;
}

.product-page.vcworks #contact-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
}

.product-page.vcworks .contact-section .container {
  position: relative;
  z-index: 1;
}

/* Contact 섹션 제목 스타일 */
.product-page.vcworks .contact-section .section-header .section-title {
  color: #FFFFFF;
}

.product-page.vcworks .contact-section .section-header .highlight {
  color: #3182F6;
}

/* Contact 섹션 구분선 색상 */
.product-page.vcworks .contact-section .section-divider {
  background: linear-gradient(to right, transparent, #3182F6, transparent);
  height: 2px;
  margin: 30px auto 40px;
  max-width: 200px;
}

.product-page.vcworks .contact-section .section-description {
  color: #BCC7D7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* 히어로 섹션 버튼 2x2 그리드 스타일 */
.product-cta-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 2rem auto 0;
}

.product-cta-grid .btn {
  width: 100%;
  margin: 0 !important;
  padding: 20px 25px !important;
  min-height: 70px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .product-cta-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}