/* ============================================================
   data-process.css — 데이터 가공 페이지 전용 스타일
   클래스 접두사: dp-
   테마: --proc-primary:#00796b / --proc-accent:#26c6da / --proc-dark:#003d33
   ============================================================ */

/* ────────── CSS 변수 ────────── */
.page-process {
  --proc-primary: #00796b;
  --proc-accent:  #26c6da;
  --proc-teal:    #00acc1;
  --proc-dark:    #003d33;
  --proc-darker:  #011a16;
  --proc-blue:    #1565c0;
  --proc-orange:  #ff6432;
}

/* ============================================================
   섹션 1: 히어로 (풀스크린)
   ============================================================ */

.dp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #011a16 0%, #003d33 40%, #001829 100%);
}

/* 격자 패턴 */
.dp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(38,198,218,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,198,218,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
}

/* 좌하단 주황 글로우 (원시 데이터) */
.dp-hero-glow-raw {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,100,50,0.2) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

/* 우상단 청록 글로우 (정제 데이터) */
.dp-hero-glow-clean {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,198,218,0.25) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

/* 중앙 수직 구분선 */
.dp-hero-divider {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 5%, var(--proc-accent) 50%, transparent 95%);
  box-shadow: 0 0 20px var(--proc-accent);
  animation: dpLinePulse 2s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
}

@keyframes dpLinePulse {
  0%,100% { opacity: 0.25; }
  50%     { opacity: 0.6; }
}

#dpHeroCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.dp-hero .container {
  position: relative;
  z-index: 3;
}

/* Processing 배지 */
.dp-proc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(38,198,218,0.12);
  border: 1px solid rgba(38,198,218,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  color: var(--proc-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.dp-spin-icon {
  display: inline-block;
  animation: dpSpin 2s linear infinite;
}

@keyframes dpSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.dp-hero-title-sm {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 4px;
}

.dp-hero-title-lg {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--proc-accent);
  text-shadow: 0 0 40px rgba(38,198,218,0.5);
  line-height: 1.1;
  margin-bottom: 4px;
}

.dp-hero-title-sm2 {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 18px;
}

.dp-hero-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 24px;
  min-height: 1.5em;
}

/* 실적 미니 배지 */
.dp-stat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.dp-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(38,198,218,0.25);
  border-radius: 8px;
  padding: 7px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* CTA 버튼 */
.dp-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--proc-primary), var(--proc-accent));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  animation: dpCtaPulse 2.5s ease-in-out infinite;
}

@keyframes dpCtaPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(38,198,218,0.35); }
  50%     { box-shadow: 0 4px 40px rgba(38,198,218,0.65); }
}

.dp-btn-cta:hover { transform: translateY(-2px); color: #fff; }

/* 히어로 변환 모니터 패널 */
.dp-transform-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(38,198,218,0.25);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
}

.dp-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(38,198,218,0.15);
  background: rgba(38,198,218,0.06);
}

.dp-panel-title {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dp-panel-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--proc-accent);
  font-family: 'Courier New', monospace;
}

.dp-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f44336;
  box-shadow: 0 0 8px #f44336;
  animation: dpLivePulse 1.2s ease-in-out infinite;
}

@keyframes dpLivePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.8); }
}

.dp-panel-body { padding: 16px 20px; }

/* 변환 행 */
.dp-transform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 6px;
}

.dp-transform-row:last-child { border-bottom: none; }

.dp-raw-val {
  color: rgba(255,150,80,0.9);
  font-family: 'Courier New', monospace;
  flex: 1;
}

.dp-arrow-ico {
  color: rgba(255,255,255,0.25);
  font-size: 14px;
  flex-shrink: 0;
}

.dp-clean-val {
  color: rgba(38,198,218,0.9);
  font-family: 'Courier New', monospace;
  font-weight: 600;
  flex: 1;
  text-align: right;
}

.dp-check-ico { color: #4caf50; flex-shrink: 0; font-size: 13px; }

/* 진행률 바 */
.dp-progress-wrap {
  margin: 14px 0;
}

.dp-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.dp-progress-pct {
  color: var(--proc-accent);
  font-weight: 700;
}

.dp-progress-bar-bg {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.dp-progress-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(to right, var(--proc-teal), var(--proc-accent));
  transition: width 1.5s ease;
}

.dp-throughput-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

.dp-throughput-row span { color: var(--proc-accent); font-weight: 700; }

.dp-panel-footer {
  padding: 10px 20px;
  border-top: 1px solid rgba(38,198,218,0.1);
  background: rgba(0,0,0,0.2);
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}

.dp-panel-footer .dp-fv { color: var(--proc-accent); font-weight: 700; }
.dp-panel-footer .dp-fv-ok { color: #4caf50; font-weight: 700; }

/* 히어로 클립 */
.dp-hero-clip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  z-index: 4;
  pointer-events: none;
}

/* 브레드크럼 */
.dp-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 12px;
}

.dp-breadcrumb .breadcrumb-item.active {
  color: var(--proc-accent);
  font-size: 12px;
}

.dp-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.25);
}


/* ============================================================
   서브 네비게이션
   ============================================================ */

.dp-subnav {
  background: #fff;
  border-bottom: 1px solid rgba(38,198,218,0.15);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 70px;
  z-index: 100;
}

.dp-subnav-list {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  overflow-x: auto;
}

.dp-subnav-list li a {
  display: block;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}

.dp-subnav-list li a:hover { color: var(--proc-accent); background: rgba(38,198,218,0.04); }

.dp-subnav-list li.active a {
  color: var(--proc-accent);
  border-bottom-color: var(--proc-accent);
  background: rgba(38,198,218,0.07);
  font-weight: 700;
}


/* ============================================================
   공통 섹션 헤더
   ============================================================ */

.dp-section-badge {
  display: inline-block;
  background: rgba(38,198,218,0.1);
  color: var(--proc-accent);
  border: 1px solid rgba(38,198,218,0.3);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.dp-section-badge.light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}

.dp-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a2e2b;
  margin-bottom: 10px;
  line-height: 1.25;
}

.dp-section-title.light { color: #fff; }

.dp-section-sub {
  font-size: 15px;
  color: #555;
  max-width: 620px;
}

.dp-section-sub.light { color: rgba(255,255,255,0.6); }


/* ============================================================
   섹션 2: 핵심 소개 — 파이프라인 다이어그램
   ============================================================ */

.dp-intro { background: #fff; padding: 80px 0; }

.dp-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.dp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.dp-checklist li::before {
  content: '✅';
  flex-shrink: 0;
  margin-top: 1px;
}

.dp-tech-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.dp-tech-tag {
  font-size: 11px;
  background: rgba(0,121,107,0.08);
  color: var(--proc-primary);
  border: 1px solid rgba(0,121,107,0.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-weight: 600;
  transition: all 0.2s;
}

.dp-tech-tag:hover {
  background: var(--proc-primary);
  color: #fff;
  border-color: transparent;
}

/* 파이프라인 CSS 다이어그램 */
.dp-pipe-diagram {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.dp-pipe-box {
  border-radius: 14px;
  padding: 22px 18px;
  min-width: 150px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.dp-pipe-box:hover { transform: translateY(-4px); }

.dp-pipe-box.input {
  background: rgba(255,100,60,0.07);
  border: 1.5px solid rgba(255,100,60,0.3);
}

.dp-pipe-box.process {
  background: rgba(0,121,107,0.08);
  border: 1.5px solid rgba(0,121,107,0.35);
  box-shadow: 0 0 20px rgba(38,198,218,0.12);
}

.dp-pipe-box.output {
  background: rgba(21,101,192,0.07);
  border: 1.5px solid rgba(21,101,192,0.3);
}

.dp-pipe-box-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dp-pipe-box.input .dp-pipe-box-label { color: var(--proc-orange); }
.dp-pipe-box.process .dp-pipe-box-label { color: var(--proc-primary); }
.dp-pipe-box.output .dp-pipe-box-label { color: var(--proc-blue); }

.dp-pipe-box-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.dp-pipe-box.input .dp-pipe-box-icon { color: var(--proc-orange); }
.dp-pipe-box.process .dp-pipe-box-icon { color: var(--proc-primary); }
.dp-pipe-box.output .dp-pipe-box-icon { color: var(--proc-blue); }

.dp-pipe-box-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2e2b;
  margin-bottom: 6px;
}

.dp-pipe-box-items {
  font-size: 11px;
  color: #666;
  line-height: 1.8;
  text-align: left;
}

.dp-pipe-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.dp-pipe-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0,121,107,0.1);
  color: var(--proc-primary);
}

.dp-pipe-step-badge .dp-step-num {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--proc-orange), var(--proc-accent));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 화살표 */
.dp-pipe-arrow {
  padding: 0 8px;
  color: rgba(38,198,218,0.6);
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
}

.dp-pipe-arrow::after {
  content: '◉';
  position: absolute;
  font-size: 8px;
  color: var(--proc-accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: dpArrowFlow 1.5s linear infinite;
}

@keyframes dpArrowFlow {
  0%   { opacity: 0; transform: translate(-120%, -50%); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translate(80%, -50%); }
}


/* ============================================================
   섹션 3: 핵심 기능 탭 4개
   ============================================================ */

.dp-features { background: linear-gradient(135deg, #f0fdfb 0%, #e0f5f3 100%); padding: 80px 0; }

.dp-tab-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.dp-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0,121,107,0.2);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.25s;
  flex: 1;
  min-width: 160px;
}

.dp-tab-btn:hover { border-color: var(--proc-accent); color: var(--proc-primary); }

.dp-tab-btn.active {
  background: var(--proc-primary);
  border-color: var(--proc-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,121,107,0.3);
}

.dp-tab-btn .bi { font-size: 18px; }

/* 탭 콘텐츠 */
.dp-tab-content-wrap { min-height: 320px; }

.dp-tab-panel { display: none; }
.dp-tab-panel.active { display: block; }

/* 탭 좌측 설명 */
.dp-tab-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a2e2b;
  margin-bottom: 12px;
}

.dp-tab-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* 탭 우측 시각 */
.dp-tab-visual {
  background: rgba(0,121,107,0.04);
  border: 1px solid rgba(38,198,218,0.2);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dp-tab-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(38,198,218,0.15);
}

.dp-tab-img {
  width: 100%;
  display: block;
}

/* 융합 다이어그램 */
.dp-fusion-diag { width: 100%; }

.dp-fusion-sources {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dp-fusion-src {
  background: rgba(255,100,60,0.1);
  border: 1px solid rgba(255,100,60,0.25);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dp-fusion-engine {
  background: rgba(0,121,107,0.25);
  border: 1.5px solid var(--proc-accent);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(38,198,218,0.25);
}

.dp-fusion-output {
  background: rgba(21,101,192,0.15);
  border: 1px solid rgba(21,101,192,0.4);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* 파이프라인 빌더 목업 (탭2) */
.dp-builder-mockup {
  width: 100%;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(38,198,218,0.2);
  border-radius: 10px;
  padding: 14px;
  font-size: 11px;
  font-family: 'Courier New', monospace;
}

.dp-block-chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.dp-block {
  background: rgba(0,121,107,0.25);
  border: 1px solid rgba(38,198,218,0.5);
  border-radius: 8px;
  padding: 7px 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.dp-block:hover {
  background: rgba(38,198,218,0.2);
  box-shadow: 0 0 10px rgba(38,198,218,0.3);
}

.dp-block-arrow { color: rgba(38,198,218,0.6); font-size: 14px; }

/* 출력 허브 (탭3) */
.dp-output-hub {
  position: relative;
  width: 100%;
  min-height: 220px;
}

.dp-hub-node-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--proc-primary), var(--proc-accent));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 0 0 8px rgba(38,198,218,0.12), 0 0 0 16px rgba(38,198,218,0.06);
  animation: dpHubPulse 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes dpHubPulse {
  0%,100% { box-shadow: 0 0 0 8px rgba(38,198,218,0.12), 0 0 0 16px rgba(38,198,218,0.06); }
  50%     { box-shadow: 0 0 0 14px rgba(38,198,218,0.18), 0 0 0 28px rgba(38,198,218,0.06); }
}

.dp-hub-out-node {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(38,198,218,0.3);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-align: center;
  white-space: nowrap;
  z-index: 2;
  transition: all 0.2s;
  cursor: pointer;
}

.dp-hub-out-node:hover { background: rgba(38,198,218,0.15); border-color: var(--proc-accent); }

/* 스케줄러 타임라인 (탭4) */
.dp-scheduler-tl {
  width: 100%;
}

.dp-sched-header {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-family: 'Courier New', monospace;
  margin-bottom: 8px;
  padding: 0 4px;
}

.dp-sched-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.dp-sched-label { flex: 0 0 90px; font-size: 10px; color: rgba(255,255,255,0.5); }

.dp-sched-track {
  flex: 1;
  height: 22px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.dp-sched-job {
  position: absolute;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--proc-primary), var(--proc-accent));
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  animation: dpSchedPulse 2s ease-in-out infinite;
}

@keyframes dpSchedPulse {
  0%,100% { opacity: 0.85; }
  50%     { opacity: 1; }
}

.dp-sched-job.done { background: rgba(76,175,80,0.4); border: 1px solid rgba(76,175,80,0.4); }

.dp-sched-now {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(244,67,54,0.8);
  border: none;
}


/* ============================================================
   섹션 4: 라이브 파이프라인 빌더 시뮬레이션
   ============================================================ */

.dp-builder {
  background: var(--data-dark, #0d1b3e);
  background: #0d1b3e;
  padding: 80px 0;
  position: relative;
}

.dp-builder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(38,198,218,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,198,218,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* 팔레트 패널 */
.dp-palette {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(38,198,218,0.2);
  border-radius: 14px;
  padding: 18px;
  height: 100%;
}

.dp-palette-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(38,198,218,0.1);
}

.dp-palette-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--proc-accent);
  letter-spacing: 0.5px;
  margin: 12px 0 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dp-palette-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(38,198,218,0.18);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 5px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dp-palette-block:hover {
  background: rgba(38,198,218,0.12);
  border-color: rgba(38,198,218,0.45);
  transform: translateX(4px);
  color: #fff;
}

/* 캔버스 */
.dp-canvas-area {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(38,198,218,0.15);
  border-radius: 14px;
  padding: 24px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(38,198,218,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.dp-canvas-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Courier New', monospace;
}

/* 파이프라인 블록 체인 */
.dp-pipeline-chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.dp-canvas-block {
  background: rgba(0,121,107,0.2);
  border: 1px solid rgba(38,198,218,0.5);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  position: relative;
}

.dp-canvas-block:hover {
  background: rgba(38,198,218,0.2);
  box-shadow: 0 0 14px rgba(38,198,218,0.3);
  transform: translateY(-2px);
}

.dp-canvas-block.selected {
  border-color: var(--proc-accent);
  background: rgba(38,198,218,0.18);
  box-shadow: 0 0 20px rgba(38,198,218,0.35);
}

.dp-canvas-conn {
  width: 28px; height: 2px;
  background: rgba(38,198,218,0.5);
  position: relative;
  flex-shrink: 0;
}

.dp-canvas-conn::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  background: var(--proc-accent);
  border-radius: 50%;
  animation: dpConnFlow 1.5s linear infinite;
}

@keyframes dpConnFlow {
  from { left: -4px; opacity: 0; }
  30%  { opacity: 1; }
  to   { left: calc(100% - 4px); opacity: 0; }
}

/* 결과 패널 */
.dp-result-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(38,198,218,0.2);
  border-radius: 14px;
  padding: 20px;
  height: 100%;
}

.dp-result-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(38,198,218,0.1);
}

.dp-run-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--proc-primary), var(--proc-accent));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dp-run-btn:hover {
  box-shadow: 0 6px 20px rgba(38,198,218,0.4);
  transform: translateY(-2px);
}

.dp-run-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.dp-result-items { display: none; }
.dp-result-items.visible { display: block; }

.dp-result-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
}

.dp-result-item:last-child { border-bottom: none; }
.dp-result-ico { color: #4caf50; font-size: 14px; flex-shrink: 0; }
.dp-result-val { color: var(--proc-accent); font-weight: 700; margin-left: auto; }

.dp-result-prog-wrap { margin: 14px 0; }

.dp-result-prog-bar {
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
}

.dp-result-prog-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(to right, var(--proc-teal), var(--proc-accent));
  width: 0;
  transition: width 3s ease;
}

.dp-result-quality {
  text-align: center;
  margin-top: 12px;
  padding: 10px;
  background: rgba(38,198,218,0.08);
  border: 1px solid rgba(38,198,218,0.2);
  border-radius: 8px;
  font-size: 13px;
  color: var(--proc-accent);
  font-weight: 700;
}


/* ============================================================
   섹션 5: 파이프라인 아키텍처
   ============================================================ */

.dp-arch { background: #112240; padding: 80px 0; }

.dp-arch-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(38,198,218,0.2), 0 0 0 1px rgba(38,198,218,0.25);
  cursor: pointer;
}

.dp-arch .dp-tech-bar { background: rgba(255,255,255,0.05); }

.dp-arch-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.1s ease;
}

.dp-step-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  border-top: 4px solid var(--proc-accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  position: relative;
  transition: all 0.3s;
  height: 100%;
}

.dp-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,121,107,0.15);
}

.dp-step-num {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--proc-accent);
  margin-bottom: 10px;
}

.dp-step-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,121,107,0.1), rgba(38,198,218,0.15));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.dp-step-icon-wrap.highlight {
  background: linear-gradient(135deg, var(--proc-primary), var(--proc-accent));
  box-shadow: 0 4px 16px rgba(0,121,107,0.4);
}

.dp-step-icon-wrap .bi { font-size: 22px; color: var(--proc-accent); }
.dp-step-icon-wrap.highlight .bi { color: #fff; }

.dp-step-title { font-size: 14px; font-weight: 700; color: #1a2e2b; margin-bottom: 8px; }
.dp-step-desc  { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 10px; }

.dp-step-tags { display: flex; flex-wrap: wrap; gap: 5px; }

.dp-step-tag {
  font-size: 11px;
  background: rgba(0,121,107,0.07);
  color: var(--proc-primary);
  border-radius: 4px;
  padding: 3px 8px;
  font-weight: 600;
}

.dp-step-arrow {
  position: absolute; right: -18px; top: 50%;
  transform: translateY(-50%);
  color: var(--proc-accent);
  font-size: 20px; z-index: 1;
}

/* 기술 스택 바 */
.dp-tech-bar {
  background: var(--proc-primary);
  padding: 18px 0; margin-top: 40px; overflow: hidden;
}

.dp-tech-scroll {
  display: flex; gap: 8px; padding: 0 20px;
  flex-wrap: wrap; justify-content: center;
  overflow-x: auto; scrollbar-width: none;
}

.dp-tech-scroll::-webkit-scrollbar { display: none; }

.dp-tech-bar-tag {
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; border-radius: 6px;
  padding: 6px 14px; font-size: 12px; font-weight: 600; white-space: nowrap;
}


/* ============================================================
   섹션 6: Before / After
   ============================================================ */

.dp-ba { background: linear-gradient(135deg, #e8f8f7 0%, #f0fdfb 100%); padding: 80px 0; }

/* 임팩트 수치 */
.dp-impact-row {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.dp-impact-item {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(0,121,107,0.15);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.dp-impact-num {
  font-size: 46px;
  font-weight: 900;
  color: var(--proc-primary);
  line-height: 1.1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.dp-impact-arrow-down { color: #f44336; font-size: 28px; }
.dp-impact-arrow-up   { color: #4caf50; font-size: 28px; }

.dp-impact-label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

/* BA 카드 */
.dp-ba-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dp-ba-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.dp-ba-card-header {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dp-ba-card.before .dp-ba-card-header {
  background: #fff5f5;
  color: #c62828;
  border-bottom: 2px solid #f44336;
}

.dp-ba-card.after .dp-ba-card-header {
  background: #f0fdfb;
  color: var(--proc-primary);
  border-bottom: 2px solid var(--proc-primary);
}

.dp-ba-card-body {
  background: #fff;
  padding: 20px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  border-top: none;
}

.dp-ba-card.before { border-left: 4px solid #f44336; }
.dp-ba-card.after  { border-left: 4px solid var(--proc-primary); }

.dp-ba-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  line-height: 1.5;
}

.dp-ba-item:last-of-type { border-bottom: none; }

.dp-ba-item .dp-x { color: #f44336; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.dp-ba-item .dp-chk { color: var(--proc-primary); font-weight: 700; font-size: 14px; flex-shrink: 0; }

.dp-ba-item.before-item { color: rgba(0,0,0,0.65); }
.dp-ba-item.after-item  { color: var(--proc-primary); font-weight: 600; }

.dp-ba-summary {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dp-ba-summary.before { background: rgba(244,67,54,0.07); color: #c62828; }
.dp-ba-summary.after  { background: rgba(0,121,107,0.07); color: var(--proc-primary); }


/* ============================================================
   섹션 7: 가공 처리 유형 쇼케이스 (플립 카드)
   ============================================================ */

.dp-types {
  background: #0d1b3e;
  padding: 80px 0;
  position: relative;
}

.dp-types::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(38,198,218,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* 플립 카드 */
.dp-flip-card {
  height: 220px;
  cursor: pointer;
  perspective: 1000px;
}

.dp-flip-inner {
  width: 100%; height: 100%;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.dp-flip-card:hover .dp-flip-inner,
.dp-flip-card.flipped .dp-flip-inner {
  transform: rotateY(180deg);
}

.dp-flip-front,
.dp-flip-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  padding: 24px;
}

.dp-flip-front {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(38,198,218,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.dp-flip-front:hover {
  background: rgba(38,198,218,0.08);
  border-color: rgba(38,198,218,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(38,198,218,0.12);
}

.dp-flip-back {
  background: rgba(0,121,107,0.15);
  border: 1px solid rgba(38,198,218,0.5);
  transform: rotateY(180deg);
  overflow-y: auto;
}

.dp-flip-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--proc-primary), var(--proc-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,121,107,0.4);
}

.dp-flip-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.dp-flip-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.dp-flip-back-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--proc-accent);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(38,198,218,0.2);
}

.dp-flip-list {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.dp-flip-list li {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.dp-flip-list li::before { content: '✓'; color: var(--proc-accent); flex-shrink: 0; }

.dp-flip-ba {
  font-size: 10px;
  background: rgba(0,0,0,0.2);
  border-radius: 6px;
  padding: 6px 8px;
  margin-top: 8px;
}

.dp-flip-ba-raw   { color: rgba(255,130,80,0.8); margin-bottom: 3px; }
.dp-flip-ba-clean { color: rgba(38,198,218,0.8); }

/* 모바일 힌트 */
.dp-flip-hint {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
}


/* ============================================================
   섹션 8: 카운터 6개 (다크)
   ============================================================ */

.dp-counters {
  background: linear-gradient(135deg, #011a16 0%, #003d33 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.dp-counters::before {
  content: 'DATA';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(120px, 20vw, 200px);
  font-weight: 900;
  color: rgba(38,198,218,0.012);
  letter-spacing: -5px;
  pointer-events: none; white-space: nowrap;
}

.dp-counters::after {
  content: '';
  position: absolute;
  left: -10%; top: 20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,198,218,0.15) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}

.dp-counter-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(38,198,218,0.15);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.dp-counter-item:hover {
  background: rgba(38,198,218,0.07);
  border-color: rgba(38,198,218,0.4);
  transform: translateY(-6px);
}

.dp-counter-num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  background: linear-gradient(135deg, #fff, var(--proc-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
  display: block;
}

.dp-counter-suffix {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--proc-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dp-counter-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.dp-counter-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-bottom: 14px;
}

.dp-counter-bar {
  height: 4px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden; margin: 0 auto; max-width: 100px;
}

.dp-counter-bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(to right, var(--proc-teal), var(--proc-accent));
  width: 0; transition: width 2s ease;
}


/* ============================================================
   섹션 9: 도입 프로세스 타임라인
   ============================================================ */

.dp-timeline { background: #fff; padding: 80px 0; }

.dp-tl-wrap {
  position: relative;
  padding: 20px 0;
}

/* 수직 중앙선 */
.dp-tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--proc-primary), var(--proc-accent));
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(38,198,218,0.3);
  transition: height 2s ease;
}

/* 타임라인 점 */
.dp-tl-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--proc-accent);
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px rgba(38,198,218,0.3), 0 0 20px rgba(38,198,218,0.4);
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 타임라인 행 */
.dp-tl-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.dp-tl-row:last-child { margin-bottom: 0; }

/* 카드 */
.dp-tl-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid #e4f4ef;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  width: calc(50% - 44px);
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.5s ease;
}

.dp-tl-row.right .dp-tl-card {
  margin-left: calc(50% + 44px);
  transform: translateX(40px);
}

.dp-tl-row.left .dp-tl-card { margin-left: 0; }

.dp-tl-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.dp-tl-card:hover {
  border-color: rgba(38,198,218,0.4);
  transform: scale(1.02) !important;
  box-shadow: 0 12px 40px rgba(0,121,107,0.12);
}

.dp-tl-step-num {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--proc-accent);
  margin-bottom: 6px;
}

.dp-tl-card-icon {
  font-size: 28px;
  color: var(--proc-primary);
  margin-bottom: 10px;
  display: block;
}

.dp-tl-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2e2b;
  margin-bottom: 8px;
}

.dp-tl-card-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 12px;
}

.dp-tl-card-checks {
  list-style: none; padding: 0; margin-bottom: 12px;
}

.dp-tl-card-checks li {
  font-size: 12px; color: #555;
  padding: 3px 0;
  display: flex; align-items: flex-start; gap: 6px;
}

.dp-tl-card-checks li::before {
  content: '·'; color: var(--proc-accent); font-weight: 900; flex-shrink: 0;
}

.dp-tl-period {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(38,198,218,0.1);
  color: var(--proc-primary);
  border: 1px solid rgba(38,198,218,0.3);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
}


/* ============================================================
   섹션 10: 관련 솔루션
   ============================================================ */

.dp-related { background: linear-gradient(135deg, #f8fdf9 0%, #f0fdfb 100%); padding: 80px 0; }

.dp-related-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.35s;
  height: 100%; display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}

.dp-related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  text-decoration: none; color: inherit;
}

.dp-related-top {
  padding: 32px 24px;
  display: flex; align-items: center; justify-content: center;
}

.dp-related-top .bi { font-size: 48px; color: #fff; }

.dp-related-body {
  padding: 20px 24px; flex: 1; display: flex; flex-direction: column;
}

.dp-related-title { font-size: 16px; font-weight: 700; color: #1a2e2b; margin-bottom: 8px; }
.dp-related-desc  { font-size: 13px; color: #555; line-height: 1.6; flex: 1; margin-bottom: 14px; }
.dp-related-tag   { font-size: 11px; color: #888; font-weight: 600; margin-bottom: 14px; }
.dp-related-link  { font-size: 13px; font-weight: 700; color: var(--proc-accent); display: inline-flex; align-items: center; gap: 4px; }


/* ============================================================
   섹션 11: CTA
   ============================================================ */

.dp-cta {
  position: relative;
  min-height: 480px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #011a16 0%, #003d33 100%);
  overflow: hidden;
  padding: 80px 0;
}

#dpCtaCanvas {
  position: absolute; inset: 0; z-index: 1; opacity: 0.55;
}

.dp-stream-text {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  overflow: hidden; white-space: nowrap;
  color: rgba(38,198,218,0.06);
  font-size: 13px; font-family: 'Courier New', monospace; letter-spacing: 3px;
  pointer-events: none; z-index: 2;
}

.dp-stream-inner {
  display: inline-block;
  animation: dpStreamScroll 24s linear infinite;
}

@keyframes dpStreamScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.dp-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(38,198,218,0.12) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none; z-index: 2;
}

.dp-cta .container { position: relative; z-index: 3; }

.dp-cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(38,198,218,0.12); border: 1px solid rgba(38,198,218,0.35);
  color: var(--proc-accent); border-radius: 50px; padding: 5px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 16px;
}

.dp-cta-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800; color: #fff;
  text-shadow: 0 2px 20px rgba(38,198,218,0.2);
  margin-bottom: 14px; line-height: 1.25;
}

.dp-cta-desc {
  font-size: 15px; color: rgba(255,255,255,0.65);
  margin-bottom: 28px; line-height: 1.7;
}

.dp-trust-badges {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5);
}

.dp-trust-badges span { display: flex; align-items: center; gap: 5px; }

.dp-contact-info {
  color: rgba(255,255,255,0.45); font-size: 13px;
  margin-top: 20px; display: flex; flex-wrap: wrap; gap: 16px;
}

.dp-contact-info a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  display: flex; align-items: center; gap: 5px;
}

.dp-contact-info a:hover { color: var(--proc-accent); }


/* ============================================================
   반응형
   ============================================================ */

@media (max-width: 991px) {
  .dp-ba-cards { grid-template-columns: 1fr; }
  .dp-impact-row { gap: 10px; }
  .dp-tl-card { width: 100%; margin-left: 0 !important; }
  .dp-tl-row.right .dp-tl-card { transform: translateX(0); }
  .dp-tl-row.left .dp-tl-card  { transform: translateX(0); }
  .dp-tl-card.visible { transform: translateY(0) !important; }
  .dp-tl-line { left: 20px; }
  .dp-tl-dot  { left: 20px; }
  .dp-tl-row  { padding-left: 52px; }
  .dp-pipe-diagram { flex-direction: column; align-items: stretch; }
  .dp-pipe-arrow { transform: rotate(90deg); align-self: center; }
}

@media (max-width: 767px) {
  .dp-hero { min-height: 100dvh; }
  .dp-hero-title-lg { font-size: 1.8rem; }
  .dp-ba-cards { grid-template-columns: 1fr; }
  .dp-tab-btn { min-width: unset; flex: none; width: calc(50% - 5px); }
  .dp-flip-card { height: 200px; }
  .dp-counter-num { font-size: 36px; }
  .dp-impact-num  { font-size: 36px; }
  .dp-cta-title   { font-size: 1.4rem; }
  .dp-stream-text { display: none; }
}
