/* 챗봇 페이지 현대적 디자인 - 고객 중심 차별화 */

/* ===== 챗봇 전용 색상 변수 ===== */
:root {
  --chatbot-primary: #4facfe;
  --chatbot-secondary: #00f2fe;
  --chatbot-accent: #667eea;
  --chatbot-success: #43e97b;
  --chatbot-warning: #fa709a;
  --chatbot-highlight: #ff6b6b;
  
  --chatbot-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --chatbot-gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --chatbot-gradient-success: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --chatbot-gradient-warning: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --chatbot-gradient-highlight: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
}

/* ===== 네비게이션 바 챗봇 페이지 최적화 ===== */
.chatbot-hero-section-modern {
  padding-top: 120px; /* 고정 네비게이션 바 높이만큼 상단 여백 추가 */
}

/* 챗봇 페이지에서 네비게이션 바 스타일 조정 */
.chatbot-hero-section-modern .navbar {
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(10px);
}

/* ===== 히어로 섹션 ===== */
.chatbot-hero-section-modern {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.chatbot-hero-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(79, 172, 254, 0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
  opacity: 0.5;
  z-index: -1;
}

.hero-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-content-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .chatbot-hero-section-modern {
    padding-top: 100px; /* 모바일에서는 더 작은 여백 */
  }
}

.hero-title-modern {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #1e293b;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-modern {
  background: var(--chatbot-gradient-highlight);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-subtitle-modern {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 3rem;
  font-weight: 500;
}

.hero-stats-modern {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item-modern {
  text-align: center;
}

.stat-number-modern {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--chatbot-primary);
  margin-bottom: 0.5rem;
}

.stat-label-modern {
  font-size: 0.9rem;
  color: #4b5563;
  font-weight: 600;
}

.hero-cta-modern {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn-modern {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ===== 챗봇 데모 ===== */
.hero-visual-modern {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chatbot-demo-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-xl);
}

.demo-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.demo-avatar-modern {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: var(--chatbot-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-info-modern h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #1e293b;
}

.status-modern {
  font-size: 0.8rem;
  color: var(--chatbot-success);
  font-weight: 600;
}

.demo-chat-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message-modern {
  padding: 0.75rem 1rem;
  border-radius: 15px;
  max-width: 80%;
  font-size: 0.9rem;
  line-height: 1.4;
}

.chat-message-modern.bot {
  background: var(--chatbot-gradient);
  color: white;
  align-self: flex-start;
}

.chat-message-modern.user {
  background: rgba(0, 0, 0, 0.05);
  color: #1e293b;
  align-self: flex-end;
}

.chat-message-modern.typing {
  background: rgba(79, 172, 254, 0.1);
  align-self: flex-start;
  padding: 1rem;
}

.typing-dots {
  display: flex;
  gap: 0.25rem;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: var(--chatbot-primary);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* ===== 진단 섹션 ===== */
.diagnosis-section-modern {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 5rem 0;
}

.diagnosis-content-modern {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .diagnosis-content-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.diagnosis-checklist-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
}

.checklist-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  text-align: center;
}

.checklist-grid-modern {
  display: grid;
  gap: 1rem;
}

.checklist-item-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: var(--transition);
  cursor: pointer;
}

.checklist-item-modern:hover {
  background: rgba(79, 172, 254, 0.05);
  border-color: rgba(79, 172, 254, 0.3);
}

.checklist-item-modern input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--chatbot-primary);
}

.checklist-item-modern label {
  font-size: 1rem;
  color: #374151;
  cursor: pointer;
  flex: 1;
}

/* ===== 결과 게이지 ===== */
.diagnosis-result-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.result-gauge-modern {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.gauge-center-modern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.gauge-number-modern {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--chatbot-primary);
}

.gauge-label-modern {
  font-size: 0.8rem;
  color: #6b7280;
}

.result-message-modern {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.result-description-modern {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

/* ===== 타사 비교 섹션 ===== */
.comparison-section-modern {
  background: linear-gradient(135deg, rgba(250, 112, 154, 0.05) 0%, rgba(254, 225, 64, 0.05) 100%);
  padding: 5rem 0;
}

.comparison-table-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  margin: 3rem 0;
}

.comparison-header-modern {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--chatbot-gradient);
  color: white;
  font-weight: 700;
}

.comparison-item-modern {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-item-modern:last-child {
  border-right: none;
}

.comparison-row-modern {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-row-modern:last-child {
  border-bottom: none;
}

.comparison-row-modern.other-company {
  background: rgba(0, 0, 0, 0.02);
}

.comparison-row-modern.zenith-company {
  background: rgba(79, 172, 254, 0.05);
}

.item-value-modern {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.item-value-modern.highlight-modern {
  color: var(--chatbot-highlight);
}

.item-label-modern {
  font-size: 0.8rem;
  color: #6b7280;
}

.comparison-benefits-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.benefit-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.benefit-icon-modern {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.benefit-card-modern p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

/* ===== 사례 연구 섹션 ===== */
.case-studies-section-modern {
  background: linear-gradient(135deg, rgba(67, 233, 123, 0.05) 0%, rgba(56, 249, 215, 0.05) 100%);
  padding: 5rem 0;
}

.case-studies-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.case-study-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
}

.case-study-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.case-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.case-avatar-modern {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: var(--chatbot-gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-info-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}

.case-industry-modern {
  font-size: 0.8rem;
  color: #6b7280;
  background: rgba(79, 172, 254, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.case-stats-modern {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.stat-modern {
  text-align: center;
}

.stat-modern .stat-number-modern {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--chatbot-primary);
  margin-bottom: 0.25rem;
}

.stat-modern .stat-label-modern {
  font-size: 0.8rem;
  color: #6b7280;
}

.case-description-modern {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  font-style: italic;
}

/* ===== 기술력 섹션 ===== */
.technology-section-modern {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
  padding: 5rem 0;
}

.tech-features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tech-feature-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.tech-feature-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.tech-icon-modern {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tech-feature-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.tech-feature-modern p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tech-highlight-modern {
  background: var(--chatbot-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: inline-block;
}

.highlight-text-modern {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== 프로세스 섹션 ===== */
.process-section-modern {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 5rem 0;
}

.process-timeline-modern {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
}

.process-timeline-modern::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--chatbot-gradient);
  z-index: 0;
}

@media (max-width: 768px) {
  .process-timeline-modern::before {
    left: 1.5rem;
  }
}

.process-step-modern {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.step-number-modern {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--chatbot-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .step-number-modern {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
}

.step-content-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  flex: 1;
}

.step-content-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.step-content-modern p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

/* ===== 가격 정책 섹션 ===== */
.pricing-section-modern {
  background: linear-gradient(135deg, rgba(250, 112, 154, 0.05) 0%, rgba(254, 225, 64, 0.05) 100%);
  padding: 5rem 0;
}

.pricing-animation-modern {
  margin: 3rem 0;
}

.animation-container-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.floating-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.floating-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--chatbot-gradient);
  border-radius: 20px 20px 0 0;
}

.floating-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon-modern {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.floating-card-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.floating-card-modern p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

.cta-section-modern {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-section-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.cta-section-modern p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 2rem;
}

.cta-buttons-modern {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons-modern .btn-modern {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}



/* ===== 최종 CTA 섹션 ===== */
.final-cta-section-modern {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.final-cta-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="final-cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(79, 172, 254, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23final-cta-pattern)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.final-cta-buttons-modern {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.final-cta-btn-modern {
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  font-weight: 600;
}

.final-cta-btn-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.final-cta-info-modern {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.info-item-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon-modern {
  font-size: 1.25rem;
}

.info-text-modern {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 600;
}

/* 챗봇 페이지 전용 스타일 */

/* 분기형 체크리스트 스타일 */
.checklist-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.checklist-column-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.checklist-column-modern .checklist-title-modern {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--chatbot-primary);
}

/* 문제점 섹션 스타일 */
.problem-section-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.problem-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.problem-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.problem-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.problem-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card-modern h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-card-modern p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

/* 솔루션 섹션 스타일 */
.solution-section-modern {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.solution-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.solution-benefits-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-block-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-block-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-title-modern {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.3);
}

.benefit-content-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item-modern:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(5px);
}

.benefit-icon-modern {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.benefit-text-modern {
    color: #374151;
    font-size: 1.1rem;
    font-weight: 500;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .checklist-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-benefits-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-block-modern {
        padding: 2rem;
    }
    
    .benefit-content-modern {
        gap: 1rem;
    }
    
    .benefit-item-modern {
        padding: 0.8rem;
    }
    
    .benefit-text-modern {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .checklist-column-modern {
        padding: 1.5rem;
    }
    
    .problem-card-modern {
        padding: 1.5rem;
    }
    
    .benefit-block-modern {
        padding: 1.5rem;
    }
    
    .benefit-title-modern {
        font-size: 1.3rem;
    }
}
