/* 프로그램 제작 페이지 현대적 디자인 - 차별화 중심 */

/* ===== 기본 CSS 변수 추가 ===== */
:root {
  /* 기본 색상 */
  --primary-color: #1a1a1a;
  --accent-color: #ffffff;
  --text-color: #ffffff;
  --light-gray: #2d2d2d;
  --white: #ffffff;
  --overlay: rgba(0, 0, 0, 0.7);
  
  /* 텍스트 색상 */
  --text-primary: #1a1a1a;
  --text-muted: #6b7280;
  
  /* 그림자 */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* 전환 효과 */
  --transition: all 0.3s ease;
  
  /* 프로그램 전용 색상 변수 */
  --program-primary: #2563EB;
  --program-secondary: #1E40AF;
  --program-accent: #3B82F6;
  --program-success: #10B981;
  --program-warning: #F59E0B;
  --program-highlight: #EF4444;
  
  --program-gradient: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  --program-gradient-secondary: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  --program-gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --program-gradient-warning: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --program-gradient-highlight: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  
  --program-bg-dark: #0B1220;
  --program-bg-blue: #1E3A8A;
}

/* ===== 기본 컨테이너 스타일 ===== */
.container-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .container-modern {
    padding: 0 1rem;
  }
}

/* ===== 기본 섹션 스타일 ===== */
.section-modern {
  padding: 6rem 0;
  position: relative;
}

/* ===== 기본 버튼 스타일 ===== */
.btn-modern {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--program-primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--program-secondary);
  transform: translateY(-2px);
}

/* ===== 네비게이션 바 프로그램 페이지 최적화 ===== */
.program-hero-section-modern {
  padding-top: 120px; /* 고정 네비게이션 바 높이만큼 상단 여백 추가 */
}

/* 프로그램 페이지에서 네비게이션 바 스타일 조정 */
.program-hero-section-modern .navbar {
  background: rgba(11, 18, 32, 0.3);
  backdrop-filter: blur(10px);
}

/* ===== 히어로 섹션 ===== */
.program-hero-section-modern {
  background: linear-gradient(135deg, var(--program-bg-dark) 0%, var(--program-bg-blue) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

.program-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="program-grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(59, 130, 246, 0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23program-grid)"/></svg>');
  opacity: 0.3;
  z-index: -1;
  animation: parallax-bg 20s ease-in-out infinite;
}

@keyframes parallax-bg {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.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;
  }
  
  .program-hero-section-modern {
    padding-top: 100px; /* 모바일에서는 더 작은 여백 */
  }
}

.hero-title-modern {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--white);
}

.highlight-modern {
  background: var(--program-gradient);
  -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: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.hero-subtitle-modern strong {
  color: var(--white);
  font-weight: 600;
}

/* ===== 포인트 카드 ===== */
.hero-points-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.point-card-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  transition: var(--transition);
}

.point-card-modern:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.point-icon-modern {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: var(--program-gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-content-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem 0;
}

.point-content-modern p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.hero-cta-modern {
  margin-top: 2rem;
}

.hero-btn-modern {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--program-primary);
  border: none;
  border-radius: 15px;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.hero-btn-modern:hover {
  background: var(--program-secondary);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* ===== 대시보드 프리뷰 ===== */
.hero-visual-modern {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-preview-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;
  width: 100%;
  max-width: 450px;
  box-shadow: var(--shadow-xl);
}

.dashboard-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dashboard-title-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}

.status-modern {
  font-size: 0.8rem;
  color: var(--program-success);
  font-weight: 600;
}

.dashboard-stats-modern {
  display: flex;
  gap: 1rem;
}

.dashboard-stats-modern .stat-item-modern {
  text-align: center;
}

.dashboard-stats-modern .stat-number-modern {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--program-primary);
  margin-bottom: 0.25rem;
}

.dashboard-stats-modern .stat-label-modern {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== 차트 영역 ===== */
.dashboard-chart-modern {
  margin-bottom: 2rem;
}

.chart-container-modern {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 120px;
  margin-bottom: 1rem;
}

.chart-line-modern {
  flex: 1;
  background: var(--program-gradient);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  transition: all 0.3s ease;
}

.chart-line-modern:hover {
  background: var(--program-gradient-secondary);
  transform: scaleY(1.1);
}

.chart-labels-modern {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== 작업 목록 ===== */
.dashboard-tasks-modern {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.task-item-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.task-item-modern.completed {
  background: rgba(16, 185, 129, 0.1);
  color: var(--program-success);
}

.task-item-modern.processing {
  background: rgba(59, 130, 246, 0.1);
  color: var(--program-primary);
}

.task-item-modern.pending {
  background: rgba(245, 158, 11, 0.1);
  color: var(--program-warning);
}

.task-icon-modern {
  font-size: 1rem;
}

.task-text-modern {
  font-weight: 500;
}

/* ===== 2. 전문가 팀 섹션 ===== */
.team-section-modern {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: var(--text-primary);
  position: relative;
}

.team-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="team-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><rect width="60" height="60" fill="rgba(0,0,0,0.02)"/><circle cx="30" cy="30" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23team-pattern)"/></svg>');
  opacity: 0.5;
  z-index: -1;
}

.team-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.team-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.team-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.team-subtitle-modern strong {
  color: var(--program-primary);
  font-weight: 600;
}

/* 전문가 팀 비주얼 */
.team-meeting-modern {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.meeting-table-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.expert-card-modern {
  background: var(--white);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.expert-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.expert-card-modern.planner {
  border-color: #3B82F6;
}

.expert-card-modern.designer {
  border-color: #8B5CF6;
}

.expert-card-modern.developer {
  border-color: #10B981;
}

.expert-card-modern.marketer {
  border-color: #F59E0B;
}

.expert-card-modern.analyst {
  border-color: #EF4444;
}

.expert-avatar-modern {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.expert-info-modern h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}

.expert-info-modern p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.meeting-status-modern {
  text-align: center;
}

.status-indicator-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--program-gradient-success);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.status-dot-modern {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 2s infinite;
}

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

/* ===== 3. 실무 경험 섹션 ===== */
.experience-section-modern {
  background: var(--white);
  color: var(--text-primary);
}

.experience-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experience-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.experience-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.experience-subtitle-modern strong {
  color: var(--program-primary);
  font-weight: 600;
}

/* 회사 쇼케이스 */
.companies-showcase-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.company-card-modern {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.company-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--program-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.company-card-modern:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.company-card-modern:hover::before {
  transform: scaleX(1);
}

.company-icon-modern {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: var(--program-gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-info-modern h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}

.company-info-modern p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem 0;
}

.automation-badge-modern {
  display: inline-block;
  background: var(--program-gradient-success);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== 4. 실무 중심 제작 방식 섹션 ===== */
.practical-section-modern {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: var(--white);
  position: relative;
}

.practical-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="practical-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23practical-pattern)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.practical-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.practical-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.practical-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.practical-subtitle-modern strong {
  color: var(--white);
  font-weight: 600;
}

/* UI 비교 */
.ui-comparison-modern {
  display: flex;
  align-items: center;
  gap: 2rem;
  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);
}

.comparison-before-modern,
.comparison-after-modern {
  flex: 1;
  text-align: center;
}

.comparison-before-modern h4,
.comparison-after-modern h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.ui-mockup-modern {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.ui-mockup-modern.cluttered {
  border: 2px solid #EF4444;
}

.ui-mockup-modern.optimized {
  border: 2px solid #10B981;
}

.ui-header-modern {
  background: #f1f5f9;
  padding: 0.5rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.ui-buttons-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ui-button-modern {
  background: #e2e8f0;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 500;
}

.ui-button-modern.essential {
  background: var(--program-gradient);
  color: var(--white);
}

.ui-content-modern {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 5px;
  min-height: 60px;
}

.ui-text-modern {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.optimization-badge-modern {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--program-gradient-success);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.comparison-arrow-modern {
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
}

.comparison-label-modern {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ===== 애니메이션 클래스 ===== */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-in-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-in-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* ===== 반응형 개선 ===== */
@media (max-width: 768px) {
  .hero-title-modern {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-modern {
    font-size: 1rem;
  }
  
  .point-card-modern {
    padding: 1rem;
  }
  
  .point-icon-modern {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .point-content-modern h3 {
    font-size: 1.1rem;
  }
  
  .point-content-modern p {
    font-size: 0.85rem;
  }
  
  .dashboard-preview-modern {
    padding: 1.5rem;
  }
  
  .hero-btn-modern {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  /* 2, 3, 4섹션 반응형 */
  .team-content-modern,
  .experience-content-modern,
  .practical-content-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-title-modern,
  .experience-title-modern,
  .practical-title-modern {
    font-size: 2rem;
  }
  
  .team-subtitle-modern,
  .experience-subtitle-modern,
  .practical-subtitle-modern {
    font-size: 1rem;
  }
  
  .meeting-table-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .companies-showcase-modern {
    gap: 1rem;
  }
  
  .company-card-modern {
    padding: 1rem;
  }
  
  .ui-comparison-modern {
    flex-direction: column;
    gap: 1rem;
  }
  
  .comparison-arrow-modern {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .hero-title-modern {
    font-size: 2rem;
  }
  
  .hero-subtitle-modern {
    font-size: 0.9rem;
  }
  
  .point-card-modern {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .point-icon-modern {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .dashboard-preview-modern {
    padding: 1rem;
  }
  
  .chart-container-modern {
    height: 80px;
  }
  
  .hero-btn-modern {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* 2, 3, 4섹션 모바일 */
  .team-title-modern,
  .experience-title-modern,
  .practical-title-modern {
    font-size: 1.75rem;
  }
  
  .team-subtitle-modern,
  .experience-subtitle-modern,
  .practical-subtitle-modern {
    font-size: 0.9rem;
  }
  
  .meeting-table-modern {
    grid-template-columns: 1fr;
  }
  
  .expert-card-modern {
    padding: 1rem;
  }
  
  .expert-avatar-modern {
    font-size: 2rem;
  }
  
  .company-card-modern {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .company-icon-modern {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .ui-comparison-modern {
    padding: 1rem;
  }
  
  .ui-mockup-modern {
    padding: 0.75rem;
  }
  
  .ui-buttons-modern {
    gap: 0.25rem;
  }
  
  .ui-button-modern {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }
}

/* ===== 5. 잘못 만든 프로그램의 대가 섹션 ===== */
.cost-section-modern {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: var(--white);
  position: relative;
}

.cost-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="cost-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23cost-pattern)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.cost-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cost-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cost-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cost-subtitle-modern strong {
  color: var(--white);
  font-weight: 600;
}

/* 비용 그래픽 */
.cost-graphic-modern {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.money-clock-overlay-modern {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.money-icon-modern {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 4rem;
  animation: float 3s ease-in-out infinite;
}

.clock-icon-modern {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 3rem;
  animation: float 3s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.cost-stats-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cost-stat-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: var(--transition);
}

.cost-stat-modern:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.stat-icon-modern {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-content-modern h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.25rem 0;
}

.stat-content-modern p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.competitor-graph-modern {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 1rem;
}

.competitor-graph-modern .graph-line-modern {
  height: 60px;
  margin-bottom: 0.5rem;
  border-radius: 5px;
}

.competitor-graph-modern .competitor-up {
  background: linear-gradient(90deg, #10B981, #059669);
  width: 80%;
}

.competitor-graph-modern .our-down {
  background: linear-gradient(90deg, #EF4444, #DC2626);
  width: 40%;
}

.competitor-graph-modern .graph-labels-modern {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== 6. 생산성과 매출 하락 섹션 ===== */
.productivity-section-modern {
  background: var(--white);
  color: var(--text-primary);
}

.productivity-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.productivity-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.productivity-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.productivity-subtitle-modern strong {
  color: var(--program-highlight);
  font-weight: 600;
}

/* 경고 카드 */
.warning-cards-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.warning-card-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 15px;
  transition: var(--transition);
  border-left: 4px solid;
}

.warning-card-modern.delay {
  background: rgba(239, 68, 68, 0.1);
  border-left-color: #EF4444;
}

.warning-card-modern.customer {
  background: rgba(245, 158, 11, 0.1);
  border-left-color: #F59E0B;
}

.warning-card-modern.revenue {
  background: rgba(220, 38, 38, 0.1);
  border-left-color: #DC2626;
}

.warning-card-modern:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.warning-icon-modern {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-content-modern h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.warning-content-modern p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* 매출 하락 차트 */
.revenue-decline-chart-modern {
  background: #f8fafc;
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}

.revenue-decline-chart-modern h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  text-align: center;
}

.revenue-decline-chart-modern .chart-container-modern {
  height: 120px;
  margin-bottom: 1rem;
}

.decline-line-modern {
  flex: 1;
  background: linear-gradient(180deg, #EF4444, #DC2626);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  transition: all 0.3s ease;
}

.decline-line-modern:hover {
  background: linear-gradient(180deg, #DC2626, #B91C1C);
  transform: scaleY(1.1);
}

/* ===== 7. 사내 사기 저하 섹션 ===== */
.morale-section-modern {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  color: var(--white);
  position: relative;
}

.morale-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="morale-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><rect width="60" height="60" fill="rgba(255,255,255,0.02)"/><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23morale-pattern)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.morale-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.morale-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.morale-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.morale-subtitle-modern strong {
  color: var(--white);
  font-weight: 600;
}

/* 직원 불만 */
.employee-complaints-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.complaint-card-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: var(--transition);
}

.complaint-card-modern:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.complaint-avatar-modern {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.complaint-text-modern {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* 회사 내부 장면 */
.office-scene-modern {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blurred-meeting-modern {
  text-align: center;
  filter: blur(1px);
  opacity: 0.7;
}

.meeting-participants-modern {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.participant-modern {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meeting-text-modern {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ===== 2. 문제1 - 기존 업체/내부 제작 실패 경험 ===== */
.problem1-section-modern {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: var(--white);
  position: relative;
}

.problem1-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="problem1-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23problem1-pattern)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.problem1-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem1-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.problem1-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.problem1-subtitle-modern strong {
  color: var(--white);
  font-weight: 600;
}

/* 실패 사례 카드 */
.failure-cases-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.failure-card-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border-left: 4px solid;
  transition: var(--transition);
}

.failure-card-modern.developer-only {
  border-left-color: #f59e0b;
}

.failure-card-modern.external-agency {
  border-left-color: #ef4444;
}

.failure-card-modern.internal-team {
  border-left-color: #8b5cf6;
}

.failure-card-modern:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.failure-icon-modern {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.failure-content-modern h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem 0;
}

.failure-content-modern p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 0.75rem 0;
}

.failure-result-modern {
  font-size: 0.9rem;
  color: #fecaca;
  font-weight: 600;
}

/* ===== 3. 해결1 - 제니스의 통합 전문가 팀 접근 방식 ===== */
.solution1-section-modern {
  background: var(--white);
  color: var(--text-primary);
}

.solution1-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution1-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.solution1-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ===== 4. 문제2 - 프로그램이 실무에 안 맞는 이유 ===== */
.problem2-section-modern {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--white);
  position: relative;
}

.problem2-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="problem2-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23problem2-pattern)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.problem2-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem2-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.problem2-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.problem2-subtitle-modern strong {
  color: var(--white);
  font-weight: 600;
}

/* ===== 5. 해결2 - 제니스의 실무 기반 제작 프로세스 ===== */
.solution2-section-modern {
  background: var(--white);
  color: var(--text-primary);
}

.solution2-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution2-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.solution2-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ===== 6. 문제3 - 잘못된 제작으로 인한 장기 손실 ===== */
.problem3-section-modern {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: var(--white);
  position: relative;
}

.problem3-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="problem3-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23problem3-pattern)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.problem3-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem3-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.problem3-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.problem3-subtitle-modern strong {
  color: var(--white);
  font-weight: 600;
}

/* ===== 7. 해결3 - 유지보수·확장성 중심 설계 ===== */
.solution3-section-modern {
  background: var(--white);
  color: var(--text-primary);
}

.solution3-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution3-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.solution3-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* 유지보수 기능 카드 */
.maintenance-features-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 15px;
  border-left: 4px solid var(--program-primary);
  transition: var(--transition);
}

.feature-card-modern:hover {
  background: #f1f5f9;
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.feature-icon-modern {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: var(--program-primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-content-modern h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.feature-content-modern p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== 8. 종합 강점 - 위 해결책들을 하나로 묶어 강조 ===== */
.summary-section-modern {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: var(--white);
  position: relative;
}

.summary-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="summary-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><rect width="80" height="80" fill="rgba(255,255,255,0.02)"/><circle cx="40" cy="40" r="3" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23summary-pattern)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.summary-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.summary-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.summary-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* 강점 카드 */
.advantage-cards-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advantage-card-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: var(--transition);
}

.advantage-card-modern:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.advantage-number-modern {
  font-size: 1.5rem;
  font-weight: 700;
  width: 50px;
  height: 50px;
  background: var(--program-primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage-content-modern h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.25rem 0;
}

.advantage-content-modern p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ===== 9. CTA - 상담 유도 ===== */
.cta-section-modern {
  background: var(--white);
  color: var(--text-primary);
  text-align: center;
}

.cta-content-modern {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.cta-subtitle-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-buttons-modern {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary-modern {
  background: var(--program-primary);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-primary-modern:hover {
  background: var(--program-secondary);
  transform: translateY(-2px);
}

.cta-secondary-modern {
  background: transparent;
  color: var(--program-primary);
  border: 2px solid var(--program-primary);
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-secondary-modern:hover {
  background: var(--program-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* 성과 폭발형 프로그램 제작 페이지 전용 스타일 */

/* 성과 대시보드 스타일 */
.performance-dashboard-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);
    max-width: 450px;
}

.performance-metrics-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.metric-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.metric-item-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.metric-icon-modern {
    font-size: 2rem;
    min-width: 3rem;
    text-align: center;
}

.metric-content-modern {
    flex: 1;
}

.metric-number-modern {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.metric-label-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.progress-chart-modern {
    margin-top: 2rem;
}

.chart-bar-modern {
    background: linear-gradient(90deg, var(--accent-color), #4facfe);
    height: 8px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.chart-bar-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.chart-label-modern {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
    display: block;
}

/* 문제 공감 섹션 스타일 */
.problem-empathy-section-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.problem-empathy-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-wall-modern {
    margin-bottom: 4rem;
}

.problem-wall-modern:last-child {
    margin-bottom: 0;
}

.problem-wall-title-modern {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

.problem-cards-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.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: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-card-modern p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.problem-insight-modern {
    text-align: center;
}

.insight-box-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.insight-icon-modern {
    font-size: 1.5rem;
}

.insight-text-modern {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
}

.mismatch-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mismatch-item-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mismatch-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mismatch-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.mismatch-item-modern h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mismatch-item-modern p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* 차별화된 해결책 섹션 스타일 */
.solution-team-section-modern {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
}

.solution-team-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-title-modern {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.solution-subtitle-modern {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.6;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.expert-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.expert-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.expert-avatar-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.expert-info-modern h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.expert-info-modern p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 신뢰 섹션 스타일 */
.trust-section-modern {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    position: relative;
    overflow: hidden;
}

.trust-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;
}

.trust-title-modern {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.trust-insight-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.companies-showcase-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.company-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.company-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.company-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.company-info-modern h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.company-stats-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-modern {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.stat-number-modern {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* 위험 회피 섹션 스타일 */
.risk-section-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.risk-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;
}

.risk-title-modern {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

.risk-stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.risk-stat-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.risk-stat-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.risk-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.risk-content-modern h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.risk-content-modern p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.zenith-solution-modern {
    text-align: center;
}

.solution-box-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.solution-icon-modern {
    font-size: 1.5rem;
}

.solution-text-modern {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* 프로그램 특징 섹션 스타일 */
.features-section-modern {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
}

.features-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;
}

.core-features-modern {
    margin-bottom: 4rem;
}

.features-title-modern {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card-modern h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card-modern p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.performance-design-modern {
    margin-top: 4rem;
}

.performance-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.performance-item-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.performance-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.performance-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.performance-item-modern h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.performance-item-modern p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* 최종 CTA 섹션 스타일 */
.final-cta-section-modern {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-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;
}

.final-cta-title-modern {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.final-cta-subtitle-modern {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.final-cta-buttons-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-btn-modern {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* 애니메이션 */
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .problem-wall-title-modern,
    .solution-title-modern,
    .trust-title-modern,
    .risk-title-modern,
    .features-title-modern,
    .final-cta-title-modern {
        font-size: 2rem;
    }
    
    .problem-cards-modern,
    .mismatch-grid-modern,
    .team-grid-modern,
    .companies-showcase-modern,
    .risk-stats-modern,
    .features-grid-modern,
    .performance-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .insight-box-modern,
    .solution-box-modern {
        padding: 1rem 1.5rem;
    }
    
    .insight-text-modern,
    .solution-text-modern {
        font-size: 1rem;
    }
    
    .final-cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-btn-modern {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .problem-wall-title-modern,
    .solution-title-modern,
    .trust-title-modern,
    .risk-title-modern,
    .features-title-modern,
    .final-cta-title-modern {
        font-size: 1.8rem;
    }
    
    .problem-card-modern,
    .mismatch-item-modern,
    .expert-card-modern,
    .company-card-modern,
    .risk-stat-modern,
    .feature-card-modern,
    .performance-item-modern {
        padding: 1.5rem;
    }
    
    .problem-card-modern h3,
    .mismatch-item-modern h3,
    .expert-info-modern h4,
    .company-info-modern h3,
    .risk-content-modern h3,
    .feature-card-modern h3,
    .performance-item-modern h3 {
        font-size: 1.1rem;
    }
}
