/* 비교표 스타일 */
.comparison-table-wrap {
  margin: 50px 0;
  padding: 30px 0;
}

.comparison-table-wrap .sc3-5__subtitle {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.4em;
  color: #2c3e50;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.comparison-table-wrap .sc3-5__subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.comparison-table {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
}

.comparison-table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9, #3498db);
  border-radius: 12px 12px 0 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 800px;
}

.comparison-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

.comparison-table th {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 18px 15px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05em;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.comparison-table th:first-child {
  border-radius: 0;
}

.comparison-table th:last-child {
  border-right: none;
}

.comparison-table tbody tr {
  transition: all 0.3s ease;
}

.comparison-table td {
  padding: 16px 15px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  border-right: 1px solid #f0f0f0;
  vertical-align: middle;
  font-size: 0.95em;
  color: #333;
}

.comparison-table td:last-child {
  border-right: none;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.comparison-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.comparison-table tbody tr:hover {
  background-color: #e3f2fd;
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.comparison-table td strong {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.05em;
  display: inline-block;
  padding: 2px 8px;
  background: linear-gradient(135deg, #ecf0f1, #f8f9fa);
  border-radius: 4px;
}

.comparison-table td:not(:first-child) {
  font-weight: 500;
  color: #555;
}

.table-note {
  font-size: 0.85em;
  color: #777;
  margin-top: 20px;
  font-style: italic;
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #3498db;
}

/* 실제 사례 스타일 */
.real-case {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.real-case::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9, #3498db);
}

.real-case .section-header {
  margin-bottom: 40px;
}

.real-case__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.real-case__item {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left: 5px solid #3498db;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.real-case__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.real-case__item:hover::before {
  transform: scaleX(1);
}

.real-case__item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(52, 152, 219, 0.25);
  border-left-color: #2980b9;
}

.real-case__header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.real-case__label {
  display: inline-block;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1976d2;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(25, 118, 210, 0.2);
  letter-spacing: 0.5px;
}

.real-case__title {
  font-size: 1.3em;
  margin: 12px 0;
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.4;
}

.real-case__content {
  margin-top: 15px;
}

.real-case__desc {
  margin: 18px 0;
  color: #555;
  line-height: 1.8;
  font-size: 1.05em;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #3498db;
}

.real-case__desc strong {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.1em;
}

.real-case__result {
  color: #27ae60;
  font-weight: 700;
  margin: 12px 0;
  font-size: 1.2em;
  padding: 10px 15px;
  background: linear-gradient(135deg, #d5f4e6 0%, #a8e6cf 100%);
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

.real-case__detail {
  margin-top: 15px;
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
  padding: 12px;
  background: #fafafa;
  border-radius: 6px;
  border-left: 3px solid #95a5a6;
}

/* 네이버 연동 스타일 */
.naver-integration {
  background: #f8f9fa;
  padding: 40px 0;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
}

.naver-integration__content {
  text-align: center;
}

.naver-integration__title {
  font-size: 1.5em;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.naver-integration__links {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.naver-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.naver-link:hover {
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
  color: #333;
}

.naver-link img {
  width: 32px;
  height: 60px;
  object-fit: contain;
}

.naver-integration__desc {
  margin-top: 15px;
  color: #666;
  font-size: 0.9em;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .comparison-table-wrap {
    margin: 30px 0;
    padding: 20px 0;
  }
  
  .comparison-table-wrap .sc3-5__subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  .comparison-table {
    margin: 20px 0;
    border-radius: 8px;
  }
  
  .comparison-table table {
    min-width: 600px;
  }
  
  .comparison-table th {
    padding: 12px 10px;
    font-size: 0.95em;
  }
  
  .comparison-table td {
    padding: 12px 10px;
    font-size: 0.9em;
  }
  
  .real-case {
    padding: 50px 0;
  }
  
  .real-case__container {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  
  .real-case__item {
    padding: 25px;
  }
  
  .real-case__title {
    font-size: 1.15em;
  }
  
  .real-case__desc {
    font-size: 1em;
  }
  
  .real-case__result {
    font-size: 1.1em;
  }
  
  .naver-integration__links {
    flex-direction: column;
    align-items: stretch;
  }
  
  .naver-link {
    justify-content: center;
  }
}

