/* 쇼핑몰 페이지 현대적 컴포넌트 스타일 */

/* ===== 히어로 섹션 ===== */
.hero-section-modern {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  position: relative;
}

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

.hero-content-modern {
  text-align: center;
  margin-bottom: 4rem;
}

/* ===== 진단 영역 ===== */
.diagnosis-area-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .diagnosis-area-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== 체크리스트 카드 ===== */
.checklist-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.checklist-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.checklist-items-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}

.checklist-item-modern:hover {
  background: rgba(102, 126, 234, 0.05);
  border-color: rgba(102, 126, 234, 0.2);
  transform: translateX(8px);
}

.checklist-item-modern input[type="checkbox"] {
  display: none;
}

.checkmark-modern {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}

.checklist-item-modern input[type="checkbox"]:checked + .checkmark-modern {
  background: var(--primary-gradient);
  border-color: transparent;
}

.checklist-item-modern input[type="checkbox"]:checked + .checkmark-modern::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.item-text-modern {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
  transition: var(--transition);
}

.checklist-item-modern input[type="checkbox"]:checked ~ .item-text-modern {
  color: var(--text-primary);
  font-weight: 500;
}

/* ===== 결과 카드 ===== */
.result-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gauge-container-modern {
  text-align: center;
}

.gauge-circle-modern {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
}

.gauge-svg-modern {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-background-modern {
  fill: none;
  stroke: rgba(102, 126, 234, 0.1);
  stroke-width: 8;
}

.gauge-progress-modern {
  fill: none;
  stroke: url(#revenueGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1s ease-in-out;
}

.gauge-content-modern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.gauge-number-modern {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.gauge-label-modern {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.gauge-result-modern {
  margin-top: 1rem;
}

.result-text-modern {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== 플로우 힌트 ===== */
.flow-hints-modern {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.hint-item-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.hint-item-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hint-icon-modern {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hint-item-modern span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ===== 디스클레임 ===== */
.disclaimer-modern {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== 외주 섹션 ===== */
.outsource-section-modern {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
}

.comparison-area-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .comparison-area-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== 분리 구조 카드 ===== */
.separated-structure-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.separated-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--warning-color);
  text-align: center;
}

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

.flow-step-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background: rgba(245, 87, 108, 0.1);
  border-left: 4px solid var(--warning-color);
}

.step-icon-modern {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content-modern h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

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

.problem-indicators-modern {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.problem-item-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background: rgba(245, 87, 108, 0.1);
  border: 1px solid rgba(245, 87, 108, 0.2);
}

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

.problem-label-modern {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warning-color);
  text-align: center;
}

/* ===== 제니스 구조 카드 ===== */
.zenith-structure-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.zenith-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--success-color);
}

.integrated-circle-modern {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--success-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.integrated-services-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-item-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background: rgba(67, 233, 123, 0.1);
  border: 1px solid rgba(67, 233, 123, 0.2);
  transition: var(--transition);
}

.service-item-modern:hover {
  transform: translateY(-2px);
  background: rgba(67, 233, 123, 0.15);
}

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

.service-label-modern {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--success-color);
}

/* ===== 강조 메시지 ===== */
.highlight-message-modern {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-text-modern {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

/* ===== 통합 섹션 ===== */
.integration-section-modern {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
}

/* ===== 프로세스 다이어그램 ===== */
.process-diagram-modern {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
}

.process-circle-modern {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.center-label-modern {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  line-height: 1.3;
  z-index: 10;
}

.process-steps-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.process-step-modern {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
}

.process-step-modern:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.process-step-modern:nth-child(1) { top: 10%; left: 50%; transform: translateX(-50%); }
.process-step-modern:nth-child(2) { top: 25%; right: 10%; }
.process-step-modern:nth-child(3) { bottom: 25%; right: 10%; }
.process-step-modern:nth-child(4) { bottom: 10%; left: 50%; transform: translateX(-50%); }
.process-step-modern:nth-child(5) { bottom: 25%; left: 10%; }
.process-step-modern:nth-child(6) { top: 25%; left: 10%; }

.step-icon-modern {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.step-label-modern {
  font-size: 0.75rem;
  text-align: center;
}

.tooltip-modern {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.tooltip-modern::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--text-primary);
}

.process-step-modern:hover .tooltip-modern {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
}

/* ===== 비교 인포그래픽 ===== */
.comparison-infographic-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .comparison-infographic-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.comparison-item-modern {
  text-align: center;
}

.infographic-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.infographic-visual-modern {
  margin-bottom: 1.5rem;
}

.separated-boxes-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 200px;
  margin: 0 auto;
}

.separated-box-modern {
  height: 60px;
  background: rgba(245, 87, 108, 0.2);
  border: 2px solid rgba(245, 87, 108, 0.3);
  border-radius: var(--border-radius);
  position: relative;
}

.separated-box-modern::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background: rgba(245, 87, 108, 0.5);
}

.zenith-circle-modern {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--success-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.infographic-description-modern {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== 성과 섹션 ===== */
.performance-section-modern {
  background: linear-gradient(135deg, rgba(67, 233, 123, 0.05) 0%, rgba(56, 249, 215, 0.05) 100%);
}

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

.graph-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.graph-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.graph-container-modern {
  margin-bottom: 1rem;
}

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

/* ===== Before/After 비교 ===== */
.before-after-comparison-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .before-after-comparison-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.comparison-item-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
}

.comparison-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.before-title-modern {
  color: var(--warning-color);
}

.after-title-modern {
  color: var(--success-color);
}

.comparison-image-modern {
  height: 200px;
  background: var(--bg-accent);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.comparison-stats-modern {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

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

.stat-number-modern {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.before-stats-modern .stat-number-modern {
  color: var(--warning-color);
}

.after-stats-modern .stat-number-modern {
  color: var(--success-color);
}

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

/* ===== 성과 요약 ===== */
.performance-summary-modern {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.summary-badge-modern {
  background: var(--success-gradient);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 150px;
}

.summary-number-modern {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.summary-label-modern {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== 고객 후기 ===== */
.testimonials-section-modern {
  margin: 4rem 0;
}

.testimonials-title-modern {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

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

.testimonial-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  position: relative;
}

.industry-tag-modern {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-gradient);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 600;
}

.testimonial-content-modern {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar-modern {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info-modern h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

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

/* ===== 변화 섹션 ===== */
.changes-section-modern {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

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

.change-card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.change-number-modern {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.change-icon-modern {
  font-size: 3rem;
  margin: 2rem 0 1rem;
}

.change-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.change-description-modern {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== 차이점 섹션 ===== */
.difference-section-modern {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
}

.difference-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .difference-content-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.internal-capabilities-modern,
.competitor-comparison-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
}

.internal-capabilities-modern h3,
.competitor-comparison-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.internal-capabilities-modern ul {
  list-style: none;
  padding: 0;
}

.internal-capabilities-modern li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-secondary);
}

.internal-capabilities-modern li:last-child {
  border-bottom: none;
}

.comparison-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.competitor-modern,
.zenith-modern {
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.competitor-modern {
  background: rgba(245, 87, 108, 0.1);
  border: 1px solid rgba(245, 87, 108, 0.2);
}

.zenith-modern {
  background: rgba(67, 233, 123, 0.1);
  border: 1px solid rgba(67, 233, 123, 0.2);
}

.competitor-modern h4,
.zenith-modern h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.competitor-modern h4 {
  color: var(--warning-color);
}

.zenith-modern h4 {
  color: var(--success-color);
}

.competitor-modern p,
.zenith-modern p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== 가치 섹션 ===== */
.value-section-modern {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
}

.value-message-modern {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-item-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 2rem;
}

.benefit-item-modern h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.benefit-item-modern p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== 최종 CTA 섹션 ===== */
.final-cta-section-modern {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 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,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(102, 126, 234, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
  z-index: -1;
}

.final-cta-content-modern {
  text-align: center;
  margin-bottom: 3rem;
}

.final-cta-text-modern {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 3rem;
}

.cta-main-area-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .cta-main-area-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.diagnosis-benefits-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 2rem;
}

.diagnosis-icon-modern {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.diagnosis-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.diagnosis-description-modern {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cta-button-area-modern {
  text-align: center;
}

.cta-button-modern {
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.cta-button-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.benefits-list-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefit-item-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon-modern {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text-modern {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.urgency-message-modern {
  text-align: center;
  padding: 2rem;
  background: rgba(245, 87, 108, 0.1);
  border: 1px solid rgba(245, 87, 108, 0.2);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
}

.urgency-text-modern {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--warning-color);
  margin: 0;
}

.clock-icon-modern {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.urgency-count-modern {
  font-weight: 800;
  color: var(--warning-color);
}

/* ===== 반응형 개선 ===== */
@media (max-width: 768px) {
  .flow-hints-modern {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-circle-modern {
    width: 300px;
    height: 300px;
  }
  
  .process-step-modern {
    width: 60px;
    height: 60px;
  }
  
  .performance-summary-modern {
    flex-direction: column;
    align-items: center;
  }
  
  .summary-badge-modern {
    min-width: 200px;
  }
  
  .benefits-list-modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .process-circle-modern {
    width: 250px;
    height: 250px;
  }
  
  .process-step-modern {
    width: 50px;
    height: 50px;
  }
  
  .step-icon-modern {
    font-size: 1.25rem;
  }
  
  .step-label-modern {
    font-size: 0.7rem;
  }
}
