/* ===== 주요 기능 섹션 ===== */
#features {
  background-color: rgba(184, 226, 255, 0.2);
  padding: 4rem 0;
}

/* .features-grid 클래스는 global.css로 이동됨 */

.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: visible;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--purple-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--gray);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== 유튜브 카드 스타일 ===== */
.youtube-card {
  background: linear-gradient(to bottom right, #fff, #fff9f9);
  border: 1px solid rgba(255, 0, 0, 0.1);
}

.youtube-badge {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  z-index: 100;
  pointer-events: none;
  transform: scale(0.85);
  overflow: visible;
}

.youtube-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-badge {
  background: #ff0000;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  margin-top: 10px;
  display: inline-block;
}

.blue-badge {
  background: var(--blue);
}

/* ===== 기업용 카드 스타일 ===== */
.enterprise-card {
  background: linear-gradient(to bottom right, #fff, #f9fbff);
  border: 1px solid rgba(0, 0, 255, 0.1);
}