/* ============================================================
   custom-dev.css  |  주문개발 페이지 전용 스타일
   prefix: cd-
   ============================================================ */

/* ── 페이지 CSS 변수 ─────────────────────────────────────── */
.page-custom {
  --cd-primary:   #6366f1;
  --cd-cyan:      #22d3ee;
  --cd-violet:    #8b5cf6;
  --cd-green:     #10b981;
  --cd-amber:     #f59e0b;
  --cd-pink:      #ec4899;
  --cd-dark:      #05081e;
  --cd-dark2:     #070f26;
  --cd-dark3:     #060e24;
  --cd-surface:   rgba(255,255,255,0.04);
  --cd-border:    rgba(255,255,255,0.10);
}

/* ── Section 공통 ────────────────────────────────────────── */
.page-custom .cd-section-title {
  font-weight: 800;
  letter-spacing: -.03em;
}
.page-custom .cd-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 2rem;
  margin-bottom: .75rem;
}

/* ── 1. HERO ─────────────────────────────────────────────── */
.page-custom .cd-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: var(--cd-dark);
  overflow: hidden;
}
.page-custom #cdCodeCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .55;
  pointer-events: none;
}
.page-custom .cd-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.page-custom .cd-hero-text { flex: 1; }
.page-custom .cd-hero-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cd-cyan);
  padding: .3rem .9rem;
  border: 1px solid rgba(34,211,238,.35);
  border-radius: 2rem;
  background: rgba(34,211,238,.06);
  margin-bottom: 1.1rem;
}
.page-custom .cd-hero-h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}
.page-custom .cd-hero-h1 .cd-typed-wrap {
  display: inline-block;
  background: linear-gradient(90deg, var(--cd-primary), var(--cd-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 260px;
}
.page-custom .cd-hero-desc {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.page-custom .cd-hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.page-custom .cd-hero-btns .btn-primary-cd {
  background: linear-gradient(90deg, var(--cd-primary), var(--cd-cyan));
  color: #fff;
  border: none;
  padding: .7rem 1.6rem;
  border-radius: .5rem;
  font-weight: 700;
  transition: box-shadow .25s, transform .2s;
}
.page-custom .cd-hero-btns .btn-primary-cd:hover {
  box-shadow: 0 0 22px rgba(99,102,241,.5);
  transform: translateY(-2px);
}
.page-custom .cd-hero-btns .btn-outline-cd {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  padding: .7rem 1.6rem;
  border-radius: .5rem;
  font-weight: 600;
  transition: border-color .2s, background .2s;
}
.page-custom .cd-hero-btns .btn-outline-cd:hover {
  border-color: #fff;
  background: rgba(255,255,255,.06);
}

/* Hero pill cards */
.page-custom .cd-hero-pills {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  flex-shrink: 0;
  width: 230px;
}
.page-custom .cd-hero-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .75rem;
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  transform: translateX(40px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
}
.page-custom .cd-hero-pill.visible {
  transform: translateX(0);
  opacity: 1;
}
.page-custom .cd-hero-pill .cd-pill-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: .45rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.page-custom .cd-hero-pill .cd-pill-text { line-height: 1.25; }
.page-custom .cd-hero-pill .cd-pill-text strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
}
.page-custom .cd-hero-pill .cd-pill-text span {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
}

/* ── 2. 개발 범위 소개 ────────────────────────────────────── */
.page-custom .cd-intro-section {
  background: #fff;
  padding: 5rem 0;
}
.page-custom .cd-intro-img-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 3px;
  background: linear-gradient(135deg, var(--cd-primary), var(--cd-cyan), var(--cd-violet));
}
.page-custom .cd-intro-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cd-primary), var(--cd-cyan), var(--cd-violet));
  filter: blur(12px);
  opacity: .45;
  z-index: -1;
}
.page-custom .cd-intro-img-wrap img {
  width: 100%;
  border-radius: .8rem;
  display: block;
}
.page-custom .cd-intro-checks { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.page-custom .cd-intro-checks li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: .95rem;
}
.page-custom .cd-intro-checks li:last-child { border-bottom: none; }
.page-custom .cd-intro-checks .cd-chk-icon {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--cd-primary), var(--cd-cyan));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.page-custom .cd-intro-checks .cd-chk-icon i {
  font-size: .65rem;
  color: #fff;
}

/* intro 2×2 icon grid */
.page-custom .cd-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.page-custom .cd-intro-card {
  background: linear-gradient(135deg, rgba(99,102,241,.06), rgba(34,211,238,.04));
  border: 1px solid rgba(99,102,241,.15);
  border-radius: .75rem;
  padding: 1rem;
  transition: transform .2s, box-shadow .2s;
}
.page-custom .cd-intro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(99,102,241,.12);
}
.page-custom .cd-intro-card .cd-ic-icon {
  font-size: 1.6rem;
  margin-bottom: .4rem;
}
.page-custom .cd-intro-card h6 {
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .2rem;
  color: #1e293b;
}
.page-custom .cd-intro-card p {
  font-size: .72rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ── 3. 개발 프로세스 5단계 ──────────────────────────────── */
.page-custom .cd-process-section {
  background: var(--cd-dark2);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-custom .cd-process-pipeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
  gap: 0;
}
.page-custom .cd-process-pipeline svg.cd-pipe-svg {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  width: 100%; height: 4px;
  transform: translateY(-50%);
  z-index: 0;
  overflow: visible;
}
.page-custom .cd-pipe-line {
  stroke: rgba(255,255,255,.12);
  stroke-width: 2;
  fill: none;
}
.page-custom .cd-pipe-flow {
  stroke: var(--cd-cyan);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 12 8;
  animation: cdPipeFlow 2s linear infinite;
  opacity: .7;
}
@keyframes cdPipeFlow {
  to { stroke-dashoffset: -60; }
}
.page-custom .cd-proc-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  flex: 1;
  padding: 0 .5rem;
}
.page-custom .cd-proc-dot {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  position: relative;
  cursor: pointer;
  transition: transform .25s;
}
.page-custom .cd-proc-dot:hover { transform: scale(1.1); }
.page-custom .cd-proc-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: .3;
  animation: cdNodeRipple 2.5s ease-out infinite;
}
@keyframes cdNodeRipple {
  0%   { transform: scale(.8); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}
.page-custom .cd-proc-label {
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
}
.page-custom .cd-proc-num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
}

/* ── 3.5 아키텍처 구성도 ─────────────────────────────────── */
.page-custom .cd-arch-section {
  background: var(--cd-dark);
  padding: 4.5rem 0;
}
.page-custom .cd-arch-diagram {
  max-width: 720px;
  margin: 0 auto;
}
.page-custom .cd-arch-layer {
  border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.1);
  padding: 1.1rem 1.5rem;
  margin-bottom: .5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
  position: relative;
  overflow: hidden;
}
.page-custom .cd-arch-layer.visible {
  transform: translateY(0);
  opacity: 1;
}
.page-custom .cd-arch-layer::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}
.page-custom .cd-arch-layer.layer-a { background: rgba(99,102,241,.08); }
.page-custom .cd-arch-layer.layer-a::before { background: var(--cd-primary); }
.page-custom .cd-arch-layer.layer-b { background: rgba(139,92,246,.08); }
.page-custom .cd-arch-layer.layer-b::before { background: var(--cd-violet); }
.page-custom .cd-arch-layer.layer-c { background: rgba(34,211,238,.08); }
.page-custom .cd-arch-layer.layer-c::before { background: var(--cd-cyan); }

.page-custom .cd-arch-layer-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.page-custom .cd-arch-items {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.page-custom .cd-arch-tag {
  font-size: .72rem;
  font-weight: 600;
  padding: .22rem .65rem;
  border-radius: .3rem;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.08);
}
.page-custom .cd-arch-arrow {
  text-align: center;
  color: rgba(255,255,255,.25);
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

/* ── 4. 개발 유형 4가지 ──────────────────────────────────── */
.page-custom .cd-types-section {
  background: #fff;
  padding: 5rem 0;
}
.page-custom .cd-type-card {
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}
.page-custom .cd-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.page-custom .cd-type-header {
  height: 5px;
}
.page-custom .cd-type-body { padding: 1.5rem; }
.page-custom .cd-type-icon {
  width: 44px; height: 44px;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: .9rem;
}
.page-custom .cd-type-card h5 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .4rem;
  color: #0f172a;
}
.page-custom .cd-type-card .cd-type-acent {
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: .7rem;
}
.page-custom .cd-type-desc {
  font-size: .85rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: .9rem;
}
.page-custom .cd-type-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
.page-custom .cd-type-tag {
  font-size: .68rem;
  font-weight: 600;
  padding: .18rem .55rem;
  border-radius: .25rem;
  background: rgba(0,0,0,.04);
  color: #64748b;
}

/* ── 4.5 포트폴리오 하이라이트 ───────────────────────────── */
.page-custom .cd-portfolio-section {
  background: var(--cd-dark2);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-custom .cd-portfolio-impact {
  text-align: center;
  margin-bottom: 3rem;
}
.page-custom .cd-impact-num {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--cd-primary), var(--cd-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}
.page-custom .cd-impact-label {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  margin-top: .3rem;
}
.page-custom .cd-port-cards {
  display: flex;
  flex-direction: column;
  gap: -1rem;
}
.page-custom .cd-port-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: .9rem;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: -0.5rem;
  transition: transform .25s, box-shadow .25s, z-index .25s;
  position: relative;
  z-index: 1;
}
.page-custom .cd-port-card:nth-child(2) { margin-top: -10px; z-index: 2; }
.page-custom .cd-port-card:nth-child(3) { margin-top: -10px; z-index: 3; }
.page-custom .cd-port-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
  z-index: 10;
}
.page-custom .cd-port-badge {
  width: 48px; height: 48px;
  border-radius: .6rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.page-custom .cd-port-card h6 {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .2rem;
}
.page-custom .cd-port-card p {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  line-height: 1.5;
}
.page-custom .cd-port-card .cd-port-kpi {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}
.page-custom .cd-port-card .cd-port-kpi strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--cd-cyan), var(--cd-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-custom .cd-port-card .cd-port-kpi span {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
}

/* ── 5. 기술 스택 ────────────────────────────────────────── */
.page-custom .cd-stack-section {
  background: #fff;
  padding: 5rem 0;
}
.page-custom .cd-stack-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.page-custom .cd-stack-tab {
  padding: .42rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(0,0,0,.12);
  font-size: .8rem;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.page-custom .cd-stack-tab.active,
.page-custom .cd-stack-tab:hover {
  background: linear-gradient(90deg, var(--cd-primary), var(--cd-cyan));
  color: #fff;
  border-color: transparent;
}
.page-custom .cd-stack-panel { display: none; }
.page-custom .cd-stack-panel.active { display: flex; flex-wrap: wrap; gap: .5rem; }
.page-custom .cd-stack-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .9rem;
  border-radius: .5rem;
  background: rgba(99,102,241,.05);
  border: 1px solid rgba(99,102,241,.12);
  font-size: .82rem;
  font-weight: 600;
  color: #1e293b;
  transition: transform .18s, box-shadow .18s;
}
.page-custom .cd-stack-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99,102,241,.15);
}
.page-custom .cd-stack-item .cd-si-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 마퀴 */
.page-custom .cd-marquee-wrap {
  overflow: hidden;
  margin-top: 2rem;
  padding: 1rem 0;
  background: linear-gradient(135deg, rgba(99,102,241,.04), rgba(34,211,238,.03));
  border-top: 1px solid rgba(99,102,241,.08);
  border-bottom: 1px solid rgba(99,102,241,.08);
}
.page-custom .cd-marquee-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: cdMarquee 25s linear infinite;
}
@keyframes cdMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.page-custom .cd-marquee-item {
  padding: .35rem .85rem;
  border-radius: .35rem;
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.15);
  font-size: .78rem;
  font-weight: 600;
  color: #4338ca;
  white-space: nowrap;
}

/* ── 6. 실적·저작권 ──────────────────────────────────────── */
.page-custom .cd-stats-section {
  background: var(--cd-dark2);
  padding: 5rem 0;
}
.page-custom .cd-ring-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.page-custom .cd-ring-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  width: 120px;
}
.page-custom .cd-ring-svg { transform: rotate(-90deg); }
.page-custom .cd-ring-track { fill: none; stroke: rgba(255,255,255,.1); }
.page-custom .cd-ring-fill  { fill: none; stroke-linecap: round; transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1); }
.page-custom .cd-ring-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.page-custom .cd-ring-label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  line-height: 1.35;
}
.page-custom .cd-ring-center-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* copyright cards */
.page-custom .cd-copy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.page-custom .cd-copy-card {
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.page-custom .cd-copy-card::before {
  content: attr(data-num);
  position: absolute;
  top: .5rem; right: 1rem;
  font-size: 4rem;
  font-weight: 900;
  opacity: .06;
  color: #fff;
  line-height: 1;
  font-family: monospace;
}
.page-custom .cd-copy-card h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .6rem;
}
.page-custom .cd-copy-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0;
}
.page-custom .cd-copy-card .cd-copy-stamp {
  position: absolute;
  bottom: 1rem; right: 1.2rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: .25rem;
  opacity: .55;
}

/* ── 6.5 의뢰 전 핵심 체크카드 ──────────────────────────── */
.page-custom .cd-checks-section {
  background: var(--cd-dark3);
  padding: 5rem 0;
}
.page-custom .cd-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.page-custom .cd-check-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .9rem;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  transform: translateY(20px);
  opacity: 0;
}
.page-custom .cd-check-card.visible {
  transform: translateY(0);
  opacity: 1;
}
.page-custom .cd-check-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity .25s;
}
.page-custom .cd-check-card:hover::after { opacity: 1; }
.page-custom .cd-check-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.page-custom .cd-check-card .cd-cc-icon {
  font-size: 2rem;
  margin-bottom: .9rem;
  display: block;
}
.page-custom .cd-check-card h5 {
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .6rem;
  line-height: 1.35;
}
.page-custom .cd-check-card p {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: .9rem;
}
.page-custom .cd-check-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
.page-custom .cd-check-tag {
  font-size: .65rem;
  font-weight: 600;
  padding: .15rem .5rem;
  border-radius: .2rem;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
}

/* 하단 유도 배너 */
.page-custom .cd-checks-banner {
  margin-top: 2rem;
  border-radius: .75rem;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: linear-gradient(90deg, var(--cd-primary), var(--cd-cyan));
}
.page-custom .cd-checks-banner p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
}
.page-custom .cd-checks-banner .btn {
  border: 1.5px solid rgba(255,255,255,.7);
  color: #fff;
  font-weight: 700;
  padding: .5rem 1.2rem;
  border-radius: .4rem;
  white-space: nowrap;
  transition: background .2s;
  background: transparent;
}
.page-custom .cd-checks-banner .btn:hover {
  background: rgba(255,255,255,.15);
}

/* ── 7. 관련 솔루션 카드 ─────────────────────────────────── */
.page-custom .cd-related-section {
  background: #fff;
  padding: 5rem 0;
}
.page-custom .cd-rel-card {
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
  position: relative;
}
.page-custom .cd-rel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.page-custom .cd-rel-header {
  height: 8px;
  transition: height .25s;
}
.page-custom .cd-rel-card:hover .cd-rel-header { height: 18px; }
.page-custom .cd-rel-body { padding: 1.4rem 1.4rem 1.1rem; }
.page-custom .cd-rel-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .18rem .55rem;
  border-radius: .2rem;
  background: rgba(99,102,241,.08);
  color: var(--cd-primary);
  margin-bottom: .7rem;
}
.page-custom .cd-rel-card h5 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.page-custom .cd-rel-card p {
  font-size: .82rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: .6rem;
}
.page-custom .cd-rel-sub {
  font-size: .78rem;
  font-weight: 600;
  color: #94a3b8;
  font-style: italic;
  margin-bottom: .9rem;
}
.page-custom .cd-rel-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--cd-primary);
  opacity: 0;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.page-custom .cd-rel-card:hover .cd-rel-link { opacity: 1; }

/* ── 8. CTA ──────────────────────────────────────────────── */
.page-custom .cd-cta-section {
  position: relative;
  background: #050818;
  padding: 5.5rem 0;
  overflow: hidden;
}
.page-custom .cd-cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.page-custom .cd-cta-orb-1 {
  width: 500px; height: 500px;
  background: var(--cd-primary);
  opacity: .18;
  top: -120px; left: -100px;
  animation: cdOrb1 20s ease-in-out infinite;
}
.page-custom .cd-cta-orb-2 {
  width: 400px; height: 400px;
  background: var(--cd-cyan);
  opacity: .10;
  bottom: -80px; right: -60px;
  animation: cdOrb2 18s ease-in-out infinite;
}
.page-custom .cd-cta-orb-3 {
  width: 350px; height: 350px;
  background: var(--cd-violet);
  opacity: .08;
  top: 50%; left: 40%;
  animation: cdOrb3 22s ease-in-out infinite;
}
@keyframes cdOrb1 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(120px,80px); }
}
@keyframes cdOrb2 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(-80px,-60px); }
}
@keyframes cdOrb3 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(-100px,60px); }
}
.page-custom #cdCtaCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .25;
}
.page-custom .cd-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.page-custom .cd-cta-h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: .8rem;
}
.page-custom .cd-cta-p {
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.page-custom .cd-cta-btns { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.2rem; }

/* shimmer 버튼 */
.page-custom .btn-cd-shimmer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--cd-primary), var(--cd-cyan));
  color: #fff;
  border: none;
  padding: .75rem 1.8rem;
  border-radius: .5rem;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 0 25px rgba(99,102,241,.45);
  transition: transform .2s, box-shadow .2s;
}
.page-custom .btn-cd-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: cdShimmer 2.2s ease-in-out infinite;
}
@keyframes cdShimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.page-custom .btn-cd-shimmer:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(99,102,241,.6);
}
.page-custom .btn-cd-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  padding: .75rem 1.8rem;
  border-radius: .5rem;
  font-weight: 600;
  transition: border-color .2s, background .2s;
}
.page-custom .btn-cd-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.06);
}
.page-custom .cd-cta-tel {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.page-custom .cd-cta-tel a { color: var(--cd-cyan); text-decoration: none; font-weight: 600; }
.page-custom .cd-cta-note {
  margin-top: .75rem;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
}

/* CTA 우측 단계 카드 */
.page-custom .cd-cta-steps-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  padding: 1.8rem;
}
.page-custom .cd-cta-steps-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cd-cyan);
  border: 1px solid rgba(34,211,238,.3);
  padding: .22rem .7rem;
  border-radius: 2rem;
  margin-bottom: 1.2rem;
}
.page-custom .cd-step-list { list-style: none; padding: 0; margin: 0; }
.page-custom .cd-step-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding-bottom: 1.1rem;
  position: relative;
  transform: translateX(20px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
}
.page-custom .cd-step-item.visible {
  transform: translateX(0);
  opacity: 1;
}
.page-custom .cd-step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 1px;
  border-left: 2px dashed rgba(255,255,255,.12);
}
.page-custom .cd-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cd-primary), var(--cd-cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.page-custom .cd-step-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .15rem;
}
.page-custom .cd-step-text span {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* ── 서브내비 ─────────────────────────────────────────────── */
.page-custom .cd-subnav {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.07);
  position: sticky;
  top: 70px;
  z-index: 90;
}
.page-custom .cd-subnav-list {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
}
.page-custom .cd-subnav-list li a {
  display: block;
  padding: .8rem 1.2rem;
  font-size: .82rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.page-custom .cd-subnav-list li a:hover,
.page-custom .cd-subnav-list li a.active {
  color: var(--cd-primary);
  border-bottom-color: var(--cd-primary);
}

/* ── 반응형 ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .page-custom .cd-hero-inner { flex-direction: column; }
  .page-custom .cd-hero-pills { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .page-custom .cd-hero-pill { flex: 1 1 calc(50% - .5rem); }
  .page-custom .cd-check-grid { grid-template-columns: repeat(2, 1fr); }
  .page-custom .cd-cta-inner { grid-template-columns: 1fr; }
  .page-custom .cd-copy-cards { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
  .page-custom .cd-check-grid { grid-template-columns: 1fr; }
  .page-custom .cd-hero-pill { flex: 1 1 100%; }
  .page-custom .cd-intro-grid { grid-template-columns: 1fr; }
  .page-custom .cd-process-pipeline { flex-direction: column; gap: 1.5rem; }
  .page-custom .cd-process-pipeline svg.cd-pipe-svg { display: none; }
}
