/* ===== 마케팅 대행 페이지 최종 섹션 스타일 ===== */

/* ===== 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;
}

/* 경험 비교 */
.experience-comparison-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.experience-card-modern {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  transition: var(--transition);
}

.experience-card-modern:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.experience-icon-modern {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.experience-content-modern h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem 0;
}

.experience-details-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-item-modern {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 5px;
}

.experience-card-modern.theoretical .detail-item-modern {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.2);
}

.experience-card-modern.practical .detail-item-modern {
  color: #bbf7d0;
  background: rgba(16, 185, 129, 0.2);
}

/* ===== 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;
}

/* 회사 포트폴리오 */
.company-portfolio-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.company-card-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 15px;
  border-left: 4px solid var(--marketing-primary);
  transition: var(--transition);
}

.company-card-modern:hover {
  background: #f1f5f9;
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.company-icon-modern {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: var(--marketing-primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-content-modern h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}

.company-stats-modern {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-item-modern {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== 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(--marketing-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(--marketing-primary);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-primary-modern:hover {
  background: var(--marketing-secondary);
  transform: translateY(-2px);
}

.cta-secondary-modern {
  background: transparent;
  color: var(--marketing-primary);
  border: 2px solid var(--marketing-primary);
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-secondary-modern:hover {
  background: var(--marketing-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== 반응형 디자인 ===== */
@media (max-width: 768px) {
  .problem3-content-modern,
  .solution3-content-modern,
  .summary-content-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .problem3-title-modern,
  .solution3-title-modern,
  .summary-title-modern,
  .cta-title-modern {
    font-size: 2rem;
  }
  
  .problem3-subtitle-modern,
  .solution3-subtitle-modern,
  .summary-subtitle-modern,
  .cta-subtitle-modern {
    font-size: 1rem;
  }
  
  .experience-comparison-modern {
    grid-template-columns: 1fr;
  }
  
  .company-portfolio-modern {
    gap: 1rem;
  }
  
  .advantage-cards-modern {
    gap: 1rem;
  }
  
  .cta-buttons-modern {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .problem3-title-modern,
  .solution3-title-modern,
  .summary-title-modern,
  .cta-title-modern {
    font-size: 1.75rem;
  }
  
  .problem3-subtitle-modern,
  .solution3-subtitle-modern,
  .summary-subtitle-modern,
  .cta-subtitle-modern {
    font-size: 0.9rem;
  }
  
  .experience-card-modern,
  .company-card-modern,
  .advantage-card-modern {
    padding: 1rem;
  }
  
  .company-card-modern {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .company-icon-modern {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
