/* ══════════════════════════════════════════════════════════════════ */
/* SERVICE PAGE LAYOUT */
/* ══════════════════════════════════════════════════════════════════ */
:root {
  --funnel-blue: #3E67FA;
  --funnel-blue-dim: rgba(62, 103, 250, 0.12);
  --funnel-text: #ffffff;
  --funnel-muted: #e5e5e5;
  --funnel-dark: #a6a6a6;
  --funnel-border: rgba(255, 255, 255, 0.08);
  --funnel-radius: 12px;
}

/* ── 공통 래퍼 ── */
.svc-funnel,
.svc-hub {
  padding: 60px 0 120px;
  color: var(--funnel-text);
  background: #000;
}

.svc-funnel p,
.svc-hub p { margin: 0; }

.svc-funnel img,
.svc-hub img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── 섹션 공통 ── */
.funnel-step {
  padding: 64px 0;
  border-top: 1px solid var(--funnel-border);
}

.funnel-step:first-of-type {
  border-top: none;
  padding-top: 0;
}

.funnel-step__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--funnel-text);
  word-break: keep-all;
  margin-bottom: 16px;
}

.funnel-step__title strong {
  font-weight: 700;
}

.funnel-step__lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--funnel-muted);
  
  word-break: keep-all;
  margin-bottom: 36px;
}

.funnel-step__lead strong {
  color: var(--funnel-text);
  font-weight: 600;
}

/* ── 인지: 페인포인트 카드 ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pain-card {
  padding: 28px 24px;
  border: 1px solid var(--funnel-border);
  border-radius: var(--funnel-radius);
  transition: border-color 0.2s, transform 0.2s;
}

.pain-card:hover {
  border-color: rgba(62, 103, 250, 0.4);
  transform: translateY(-2px);
}

.pain-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.pain-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--funnel-text);
  word-break: keep-all;
}

/* ── 관심: 서비스 카드 ── */
.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.interest-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.interest-card {
  padding: 32px 28px;
  border: 1px solid var(--funnel-border);
  border-radius: var(--funnel-radius);
  background: rgba(255, 255, 255, 0.02);
}

.interest-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--funnel-blue);
  margin-bottom: 12px;
}

.interest-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  word-break: keep-all;
}

.interest-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--funnel-muted);
  word-break: keep-all;
}

.interest-card__desc strong {
  color: var(--funnel-text);
  font-weight: 600;
}

/* ── 욕구: 혜택 리스트 ── */
.benefit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-list__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--funnel-blue-dim);
  color: var(--funnel-blue);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-list__body strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  word-break: keep-all;
}

.benefit-list__body span {
  font-size: 14px;
  line-height: 1.65;
  color: var(--funnel-muted);
  word-break: keep-all;
}

.funnel-media {
  border-radius: var(--funnel-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.funnel-media__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}

/* ── 신뢰: 프로세스 + 지표 ── */
.trust-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.trust-process {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trust-process__step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--funnel-border);
}

.trust-process__step:last-child {
  border-bottom: none;
}

.trust-process__dot {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--funnel-blue);
  color: var(--funnel-blue);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-process__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  word-break: keep-all;
}

.trust-process__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--funnel-muted);
  word-break: keep-all;
}

.trust-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--funnel-border);
  border-radius: var(--funnel-radius);
  background: rgba(255, 255, 255, 0.02);
}

.trust-stats__item dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--funnel-muted);
  margin-bottom: 6px;
}

.trust-stats__item dd {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.trust-stats__item dd span {
  font-size: 14px;
  font-weight: 400;
  color: var(--funnel-muted);
  margin-left: 4px;
}

/* ── 행동: CTA ── */
.funnel-cta {
  padding: 56px 40px;
  border: 1px solid var(--funnel-border);
  border-radius: var(--funnel-radius);
  background: linear-gradient(135deg, rgba(62, 103, 250, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.funnel-cta__title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.35;
  word-break: keep-all;
  margin-bottom: 8px;
}

.funnel-cta__desc {
  font-size: 15px;
  color: var(--funnel-muted);
  word-break: keep-all;
}

.funnel-cta__price {
  font-size: 13px;
  color: var(--funnel-muted);
  margin-top: 8px;
}

.funnel-cta__price em {
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  color: var(--funnel-text);
  margin-right: 6px;
}

.funnel-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--funnel-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.2s;
  word-break: keep-all;
  white-space: nowrap;
}

.funnel-cta__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.funnel-cta__btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ══════════════════════════════════════════════════════════════════ */
/* WEB INTRO HERO (sub010101, sub010103) */
/* ══════════════════════════════════════════════════════════════════ */
#sub010101 .web-intro,
#sub010103 .web-intro {
  padding-bottom: 72px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--funnel-border);
}

#sub010101 .web-intro__layout,
#sub010103 .web-intro__layout {
  max-width: 720px;
}

#sub010101 .web-intro__headline,
#sub010103 .web-intro__headline {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--funnel-text);
  word-break: keep-all;
  margin-bottom: 18px;
}

#sub010101 .web-intro__headline strong,
#sub010103 .web-intro__headline strong {
  font-weight: 700;
}

#sub010101 .web-intro__body,
#sub010103 .web-intro__body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--funnel-muted);
  word-break: keep-all;
  max-width: 560px;
}

#sub010101 .web-intro__body strong,
#sub010103 .web-intro__body strong {
  color: var(--funnel-text);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════ */
/* MARKETING MOTTO HERO (sub010102) */
/* ══════════════════════════════════════════════════════════════════ */
#sub010102 .mkt-motto {
  padding-bottom: 72px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--funnel-border);
}

#sub010102 .mkt-motto__headline {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--funnel-text);
  word-break: keep-all;
  margin-bottom: 18px;
}

#sub010102 .mkt-motto__headline strong {
  font-weight: 700;
}

#sub010102 .mkt-motto__body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--funnel-muted);
  word-break: keep-all;
  max-width: 560px;
}

#sub010102 .mkt-motto__body strong {
  color: var(--funnel-text);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════ */
/* SERVICE HUB (sub0101) */
/* ══════════════════════════════════════════════════════════════════ */
.svc-hub .hub-philosophy {
  padding-bottom: 64px;
}

.svc-hub .hub-philosophy__eyebrow {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 18px;
}

.svc-hub .hub-philosophy__headline {
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 400;
  word-break: keep-all;
  margin-bottom: 16px;
}

.svc-hub .hub-philosophy__lead {
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--funnel-muted);
  word-break: keep-all;
  margin-bottom: 18px;
}

.svc-hub .hub-philosophy__lead strong {
  color: var(--funnel-blue);
  font-weight: 700;
}

.svc-hub .hub-philosophy__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--funnel-dark);
  word-break: keep-all;
  max-width: 640px;
}

/* ── 통합 흐름 ── */
.svc-hub .hub-flow {
  padding: 64px 0;
  border-top: 1px solid var(--funnel-border);
}

.svc-hub .hub-flow__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--funnel-blue);
  margin-bottom: 12px;
}

.svc-hub .hub-flow__headline {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #fff;
  word-break: keep-all;
  margin-bottom: 32px;
}

.svc-hub .hub-flow__headline strong {
  font-weight: 700;
}

.svc-hub .hub-flow__track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 28px;
}

.svc-hub .hub-flow__step {
  flex: 1;
  padding: 24px 20px;
  border: 1px solid var(--funnel-border);
  border-radius: var(--funnel-radius);
  background: rgba(255, 255, 255, 0.02);
}

.svc-hub .hub-flow__step-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--funnel-blue);
  margin-bottom: 10px;
}

.svc-hub .hub-flow__step-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  word-break: keep-all;
}

.svc-hub .hub-flow__step-desc {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--funnel-muted);
  word-break: keep-all;
}

.svc-hub .hub-flow__arrow {
  flex-shrink: 0;
  align-self: center;
  width: 20px;
  height: 2px;
  background: rgba(62, 103, 250, 0.5);
  position: relative;
}

.svc-hub .hub-flow__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(62, 103, 250, 0.5);
}

.svc-hub .hub-flow__cycle-wrap {
  margin-bottom: 28px;
}

.svc-hub .hub-flow__cycle-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(62, 103, 250, 0.28);
  border-radius: var(--funnel-radius);
  background: rgba(62, 103, 250, 0.06);
  max-width: 100%;
}

.svc-hub .hub-flow__cycle-note {
  margin-top: 16px;
}

.svc-hub .hub-flow__cycle-icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--funnel-blue);
}

.svc-hub .hub-flow__cycle-note span:last-child {
  font-size: 15px;
  line-height: 1.75;
  color: var(--funnel-muted);
  word-break: keep-all;
}

.svc-hub .hub-flow__cycle-note strong {
  color: var(--funnel-text);
  font-weight: 600;
}

.svc-hub .hub-flow__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--funnel-muted);
  word-break: keep-all;
  max-width: 640px;
}

.svc-hub .hub-branding {
  padding: 64px 0;
  border-top: 1px solid var(--funnel-border);
}

.svc-hub .hub-branding__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--funnel-blue);
  margin-bottom: 12px;
}

.svc-hub .hub-branding__headline {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #fff;
  word-break: keep-all;
  margin-bottom: 14px;
}

.svc-hub .hub-branding__headline strong {
  font-weight: 700;
}

.svc-hub .hub-branding__lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--funnel-muted);
  word-break: keep-all;
  max-width: 640px;
  margin-bottom: 28px;
}

.svc-hub .hub-branding__lead strong {
  color: #fff;
  font-weight: 600;
}

.hub-branding__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hub-branding__item {
  padding: 28px 24px;
  border: 1px solid var(--funnel-border);
  border-radius: var(--funnel-radius);
  background: rgba(255, 255, 255, 0.02);
}

.hub-branding__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.hub-branding__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--funnel-muted);
  word-break: keep-all;
}

.hub-method {
  padding: 64px 0;
  border-top: 1px solid var(--funnel-border);
}

.hub-method__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--funnel-blue);
  margin-bottom: 12px;
}

.hub-method__headline {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  word-break: keep-all;
  margin-bottom: 36px;
}

.hub-services {
  padding: 64px 0;
  border-top: 1px solid var(--funnel-border);
}

.hub-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hub-service-card {
  display: block;
  padding: 36px 28px;
  border: 1px solid var(--funnel-border);
  border-radius: var(--funnel-radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.hub-service-card:hover {
  border-color: var(--funnel-blue);
  transform: translateY(-4px);
  background: rgba(62, 103, 250, 0.05);
}

.hub-service-card__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--funnel-blue);
  margin-bottom: 16px;
}

.hub-service-card__title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  word-break: keep-all;
}

.hub-service-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--funnel-muted);
  word-break: keep-all;
  margin-bottom: 20px;
}

.hub-service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--funnel-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hub-service-card__link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ══════════════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .interest-grid--3 { grid-template-columns: 1fr; }
  .hub-branding__grid { grid-template-columns: 1fr 1fr; }
  .svc-hub .hub-flow__track { flex-wrap: wrap; }
  .svc-hub .hub-flow__arrow { display: none; }
  .svc-hub .hub-flow__step { flex: 1 1 calc(50% - 8px); min-width: 140px; }
  .benefit-layout { grid-template-columns: 1fr; }
  .trust-layout { grid-template-columns: 1fr; }
  .hub-services__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .svc-funnel,
  .svc-hub { padding: 40px 0 80px; }

  #sub010102 .mkt-motto {
    padding-bottom: 48px;
  }

  #sub010101 .web-intro,
  #sub010103 .web-intro {
    padding-bottom: 48px;
  }

  #sub010101 .web-intro__layout,
  #sub010103 .web-intro__layout,
  #sub010102 .mkt-motto {
    gap: 28px;
  }

  #sub010101 .web-intro__body,
  #sub010103 .web-intro__body {
    font-size: 15px;
  }

  #sub010102 .mkt-motto__body {
    font-size: 15px;
  }

  .funnel-step { padding: 48px 0; }
  .funnel-step__lead { font-size: 15px; margin-bottom: 28px; }

  .pain-grid { grid-template-columns: 1fr; }
  .hub-branding__grid { grid-template-columns: 1fr; }
  .svc-hub .hub-flow__step { flex: 1 1 100%; }
  .interest-grid { grid-template-columns: 1fr; }

  .funnel-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px;
  }

  .funnel-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .hub-services__grid { grid-template-columns: 1fr; }

  .trust-stats { padding: 24px; }
  .trust-stats__item dd { font-size: 26px; }
}
