/* ==============================================================
   따종디엔핑(大众点评) 마케팅 섹션 스타일
   ============================================================== */

/* 섹션 기본 설정 */
.dzdp-marketing-section {
  padding: 120px 0;
  background: linear-gradient(135deg,
    #FFF5F0 0%,      /* 연한 오렌지 */
    #FFE9E0 30%,     /* 피치 */
    #f8f9fa 70%,     /* 그레이시 화이트 */
    #e9ecef 100%     /* 라이트 그레이 */
  );
  position: relative;
  overflow: hidden;
}

.dzdp-marketing-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
    rgba(255, 102, 51, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.dzdp-marketing-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
    rgba(255, 136, 0, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* 섹션 타이틀 */
.dzdp-marketing-section .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.dzdp-marketing-section .section-title span {
  color: #ff6633;
  position: relative;
}

.dzdp-marketing-section .section-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: #666;
  text-align: center;
  margin-bottom: 60px;
}

/* 컨텐츠 그리드 */
.dzdp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* 왼쪽 영역 */
.dzdp-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* 로고 영역 */
.dzdp-logo {
  margin-bottom: 10px;
}

.dzdp-text-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 10px;
}

.dzdp-text-logo .chinese {
  font-size: 48px;
  color: #ff6633;
  font-weight: 700;
  letter-spacing: 2px;
}

.dzdp-text-logo .korean {
  font-size: 24px;
  color: #333;
  font-weight: 500;
}

.dzdp-logo .badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6633, #ff8800);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* 설명 텍스트 */
.dzdp-left h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.dzdp-left > p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.dzdp-left strong {
  color: #ff6633;
  font-weight: 600;
}

/* 기능 리스트 */
.dzdp-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dzdp-features li {
  font-size: 15px;
  color: #666;
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid rgba(255, 102, 51, 0.1);
  transition: all 0.3s ease;
}

.dzdp-features li:last-child {
  border-bottom: none;
}

.dzdp-features li:hover {
  color: #2c2c2c;
  padding-left: 35px;
  background: rgba(255, 102, 51, 0.03);
}

.dzdp-features li i {
  position: absolute;
  left: 0;
  top: 12px;
  color: #ff6633;
  font-size: 18px;
}

/* CTA 버튼 */
.dzdp-left .cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.dzdp-detail-btn {
  background: linear-gradient(135deg, #ff6633, #ff8800);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 102, 51, 0.3);
}

.dzdp-detail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 51, 0.4);
  gap: 12px;
}

.dzdp-download-btn {
  background: white;
  color: #ff6633;
  padding: 14px 28px;
  border: 2px solid #ff6633;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.dzdp-download-btn:hover {
  background: #ff6633;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 51, 0.3);
}

/* 오른쪽 영역 */
.dzdp-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* 하이라이트 숫자 */
.dzdp-highlight {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dzdp-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6633, #ff8800);
}

.dzdp-highlight h4 {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  margin-bottom: 20px;
}

.dzdp-highlight .highlight-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.dzdp-highlight .highlight-number .number {
  font-size: 48px;
  font-weight: 700;
  color: #ff6633;
  line-height: 1;
}

.dzdp-highlight .highlight-number .unit {
  font-size: 24px;
  color: #666;
  font-weight: 500;
}

.dzdp-highlight p {
  font-size: 16px;
  color: #666;
}

/* 기능 카드 그리드 */
.dzdp-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.dzdp-feature-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dzdp-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6633, #ff8800);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.dzdp-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 102, 51, 0.2);
}

.dzdp-feature-card:hover::after {
  transform: scaleX(1);
}

.dzdp-feature-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6633, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.dzdp-feature-card .icon i {
  font-size: 24px;
  color: white;
}

.dzdp-feature-card h5 {
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 5px;
}

.dzdp-feature-card p {
  font-size: 12px;
  color: #999;
}

/* 성공 사례 */
.dzdp-right .success-case {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.dzdp-right .success-case h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dzdp-right .success-case h4::before {
  content: '🏅';
  font-size: 20px;
}

.dzdp-right .case-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff8f6;
  border-radius: 12px;
  margin-bottom: 12px;
  border-left: 3px solid #ff6633;
  transition: all 0.3s ease;
}

.dzdp-right .case-item:last-child {
  margin-bottom: 0;
}

.dzdp-right .case-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(255, 102, 51, 0.15);
}

.dzdp-right .case-item .brand {
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
}

.dzdp-right .case-item .result {
  font-size: 14px;
  color: #666;
}

.dzdp-right .case-item .result em {
  color: #ff6633;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}

/* 핵심 통계 */
.dzdp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.stat-item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 102, 51, 0.15);
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #ff6633;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #666;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
  .dzdp-content {
    gap: 60px;
  }

  .dzdp-marketing-section {
    padding: 100px 20px;
  }
}

@media (max-width: 768px) {
  .dzdp-marketing-section {
    padding: 80px 20px;
  }

  .dzdp-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dzdp-marketing-section .section-title {
    font-size: 32px;
  }

  .dzdp-marketing-section .section-desc {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .dzdp-text-logo .chinese {
    font-size: 40px;
  }

  .dzdp-text-logo .korean {
    font-size: 20px;
  }

  .dzdp-left .cta-buttons {
    flex-direction: column;
  }

  .dzdp-detail-btn,
  .dzdp-download-btn {
    width: 100%;
    justify-content: center;
  }

  .dzdp-feature-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .dzdp-feature-card {
    padding: 15px;
  }

  .dzdp-feature-card .icon {
    width: 40px;
    height: 40px;
  }

  .dzdp-feature-card .icon i {
    font-size: 20px;
  }

  .dzdp-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .dzdp-marketing-section {
    padding: 60px 15px;
  }

  .dzdp-marketing-section .section-title {
    font-size: 28px;
  }

  .dzdp-features li {
    font-size: 14px;
    padding: 10px 0 10px 28px;
  }

  .dzdp-highlight {
    padding: 25px 20px;
  }

  .dzdp-highlight .highlight-number .number {
    font-size: 40px;
  }

  .dzdp-highlight .highlight-number .unit {
    font-size: 20px;
  }

  .dzdp-feature-cards {
    grid-template-columns: 1fr;
  }

  .dzdp-right .case-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .dzdp-stats {
    grid-template-columns: 1fr;
  }
}

/* 애니메이션 효과 (AOS 보강) */
[data-aos="fade-up"] .dzdp-marketing-section {
  transition: all 0.6s ease;
}

[data-aos="fade-right"] .dzdp-left {
  transition: all 0.6s ease;
}

[data-aos="fade-left"] .dzdp-right {
  transition: all 0.6s ease;
}