.section-painpoint {
    padding: 120px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }
  
  .section-painpoint::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12,45,107,0.02) 0%, rgba(66,133,244,0.02) 100%);
    z-index: 0;
  }
  
  .section-painpoint .section-title {
    font-size: 4.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #111;
    position: relative;
    z-index: 1;
  }
  
  .section-painpoint .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0c2d6b, #4285F4);
    border-radius: 4px;
  }
  
  .painpoint-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .painpoint-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
  }
  
  .painpoint-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #0c2d6b, #4285F4);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .painpoint-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: rgba(66,133,244,0.1);
  }
  
  .painpoint-item:hover::after {
    opacity: 1;
  }
  
  .painpoint-item img {
    width: 80px;     
    height: 80px;
    margin-bottom: 5px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
  }
  
  .painpoint-item:hover img {
    transform: scale(1.05);
  }
  
  .painpoint-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    line-height: 1.6;
    transition: all 0.3s ease;
    margin-bottom: 5px;
  }
  
  .painpoint-item:hover h3 {
    background: linear-gradient(135deg, #0c2d6b, #4285F4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .painpoint-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
  }
  
  .painpoint-item p strong {
    color: #0c2d6b;
    font-weight: 600;
  }
  
  /* 강조 카드 */
  .painpoint-item.highlight {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.03);
    padding-left: 36px;
  }
  
  .painpoint-item.highlight::after {
    opacity: 1;
  }
  
  @media (max-width: 992px) {
    .painpoint-grid {
      flex-direction: column;
      align-items: center;
    }
    
    .painpoint-item {
      max-width: 100%;
      width: 100%;
    }
    
    .section-painpoint .section-title {
      font-size: 3rem;
      margin-bottom: 60px;
    }
  }
  