/**
 * 촘촘 공식 홈 v2 — Agentic AI 톤 (모바일 우선)
 * 선거 웹 electionDesignTokens 감성 정렬: --cc-primary ≈ #5b2eea
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;600;700;800&display=swap");

:root {
  --cc-primary: #5b2eea;
  --cc-primary-soft: #ede7fd;
  --cc-secondary: #ef4388;
  --cc-bg: #f4f2fb;
  --cc-surface: #ffffff;
  --cc-border: #e8e4f5;
  --cc-text: #1a1a1a;
  --cc-muted: #5c5c5c;
  --cc-radius: 14px;
  --cc-radius-sm: 10px;
  --cc-shadow: 0 4px 18px rgba(91, 46, 234, 0.09);
  --cc-max: 1100px;
  --cc-tap: 48px;
}

.chomchom-v2 {
  font-family: "Noto Sans KR", "Malgun Gothic", "Apple SD Gothic Neo", system-ui, sans-serif;
  color: var(--cc-text);
  background: var(--cc-bg);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

.chomchom-v2 * {
  box-sizing: border-box;
}

.cc-inner {
  width: 100%;
  max-width: var(--cc-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.cc-br-lg {
  display: none;
}
@media (min-width: 768px) {
  .cc-br-lg {
    display: inline;
  }
}

/* Hero */
.cc-hero {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(165deg, #ede7fd 0%, #fff 55%, #faf8ff 100%);
  border-bottom: 1px solid var(--cc-border);
}

.cc-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4527a0;
  background: var(--cc-primary-soft);
  border: 1px solid var(--cc-border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin: 0 0 1rem;
}

.cc-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cc-gradient-text {
  background: linear-gradient(120deg, var(--cc-primary) 0%, #7c4dff 45%, var(--cc-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cc-lead {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  color: var(--cc-muted);
  max-width: 42rem;
}

.cc-hero .cc-lead--tight {
  margin-top: -0.25rem;
  margin-bottom: 1.5rem;
}

.cc-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .cc-hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--cc-tap);
  padding: 0 1.35rem;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--cc-radius-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.cc-btn--primary {
  background: var(--cc-primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(91, 46, 234, 0.35);
}
.cc-btn--primary:hover,
.cc-btn--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91, 46, 234, 0.4);
  color: #fff;
}

.cc-btn--ghost {
  background: var(--cc-surface);
  color: var(--cc-primary);
  border: 2px solid var(--cc-border);
}
.cc-btn--ghost:hover,
.cc-btn--ghost:focus-visible {
  border-color: var(--cc-primary);
  color: var(--cc-primary);
}

.cc-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--cc-muted);
  max-width: 40rem;
}

/* Sections */
.cc-section {
  padding: 2.75rem 0;
  background: var(--cc-surface);
}

.cc-section--muted {
  background: #faf8ff;
  border-top: 1px solid var(--cc-border);
  border-bottom: 1px solid var(--cc-border);
}

.cc-h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.3;
}

.cc-h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.cc-section-lead {
  margin: 0 0 1.5rem;
  color: var(--cc-muted);
  max-width: 48rem;
}

.cc-mt {
  margin-top: 1rem;
}

/* Cards */
.cc-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cc-cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cc-card {
  padding: 1.25rem 1.35rem;
  background: var(--cc-surface);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow);
}

.cc-card p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 0.95rem;
}

/* Service grid */
.cc-service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .cc-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .cc-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cc-service {
  padding: 1.25rem;
  background: var(--cc-surface);
  border-radius: var(--cc-radius);
  border: 1px solid var(--cc-border);
  box-shadow: var(--cc-shadow);
}

.cc-service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cc-primary);
  margin-bottom: 0.35rem;
}

.cc-service p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 0.92rem;
}

/* Steps */
.cc-steps {
  margin: 0;
  padding-left: 1.2rem;
  max-width: 40rem;
  color: var(--cc-muted);
}
.cc-steps li {
  margin-bottom: 0.65rem;
}

/* Pills */
.cc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cc-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--cc-surface);
  border: 1px solid var(--cc-border);
  border-radius: 999px;
}

/* Payment disclaimer */
.cc-disclaimer {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: var(--cc-muted);
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--cc-radius-sm);
}
.cc-disclaimer code {
  font-size: 0.78rem;
  word-break: break-all;
}

/* Contact */
.cc-contact {
  background: linear-gradient(180deg, #fff 0%, #f4f2fb 100%);
  border-top: 1px solid var(--cc-border);
}

.cc-contact-inner {
  text-align: left;
}

@media (min-width: 640px) {
  .cc-contact-inner {
    text-align: center;
  }
  .cc-contact-inner .cc-hero-cta {
    justify-content: center;
  }
}

.cc-contact-meta {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--cc-text);
}

/* Footer */
.cc-footer {
  padding: 2rem 0 2.5rem;
  background: #1a1240;
  color: #e8e4f5;
}

.cc-footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cc-footer-grid {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

.cc-footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.cc-footer-small {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.cc-footer-note {
  margin-top: 0.5rem;
  opacity: 0.85;
}

/* 문의 섹션: 대상 한 줄 강조 (레이아웃 동일) */
.chomchom-v2 .cc-contact-audience {
  margin-top: 0.35rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: var(--cc-text);
}

.cc-footer-legal p {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  line-height: 1.55;
}

.cc-muted {
  opacity: 0.75;
  margin-right: 0.35rem;
}

.cc-copy {
  margin-top: 1rem !important;
  font-size: 0.78rem !important;
  opacity: 0.65;
}

.cc-footer-links {
  margin: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}
.cc-footer-links a {
  color: #c4b5fd;
  font-weight: 600;
  font-size: 0.88rem;
}
.cc-footer-links a:hover {
  color: #fff;
}

/* 그누보드 상단 헤더와 랜딩 사이 간격 */
#hd + hr + .chomchom-v2,
#hd ~ .chomchom-v2 {
  margin-top: 0;
}

/* 모바일: 랜딩이 #container 안에서 풀폭 */
#container .chomchom-v2 {
  margin: 0 -1rem;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  #container .chomchom-v2 {
    margin: 0;
  }
}

/* IR 랜딩: Summary 이미지 중심 섹션 */
.cc-lead--hero-tight {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.cc-ir-wrap .cc-inner {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.section-summary,
.section-ai,
.section-sales,
.section-expand,
.section-why-now {
  text-align: center;
  margin: clamp(2.5rem, 6vw, 5rem) 0;
}

.section-summary img,
.section-ai img,
.section-sales img,
.section-expand img,
.section-why-now img,
.cc-ir-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--cc-shadow);
  vertical-align: middle;
}

.cc-ir-img--stack {
  margin-top: 1.75rem;
}

.cc-ir-tagline {
  margin: 0 0 0.35rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 800;
  color: var(--cc-text);
  letter-spacing: -0.02em;
}

.cc-ir-deck {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  color: var(--cc-muted);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.cc-ir-deck--small {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.cc-ir-bullets {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  max-width: 36rem;
  text-align: left;
  color: var(--cc-muted);
  font-size: 0.98rem;
}

.cc-ir-bullets li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.55rem;
}

.cc-ir-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cc-primary);
}

.cc-ir-bullets--compact {
  margin-bottom: 1.25rem;
}

.section-sales .cc-h2 {
  margin-bottom: 1rem;
}

.cc-section-lead--tight {
  margin-bottom: 1rem;
}

.cc-why-lines {
  margin: 0 auto 1.75rem;
  max-width: 44rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--cc-muted);
  text-align: center;
}

/* 이해관계자 NEED 섹션 */
.chomchom-v2 .cc-stakeholder-needs {
  margin: 90px 0;
}

.chomchom-v2 .cc-section-heading {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.chomchom-v2 .cc-section-heading .cc-h2 {
  margin-bottom: 0.75rem;
}

.chomchom-v2 .cc-stakeholder-sub {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--cc-muted);
}

.chomchom-v2 .cc-needs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.chomchom-v2 .cc-need-card {
  background: #fff;
  border: 1px solid #ece8f7;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(32, 20, 71, 0.06);
}

.chomchom-v2 .cc-need-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4efff;
  color: var(--cc-primary);
  font-size: 13px;
  font-weight: 700;
}

.chomchom-v2 .cc-need-card h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  line-height: 1.45;
  color: #1d1633;
}

.chomchom-v2 .cc-need-card ul {
  margin: 0;
  padding-left: 18px;
}

.chomchom-v2 .cc-need-card li {
  margin: 0 0 10px;
  color: #544c6a;
  line-height: 1.75;
}

.chomchom-v2 .cc-need-result {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #ddd4f3;
  font-weight: 600;
  color: #2d2350;
  line-height: 1.7;
}

.chomchom-v2 .cc-need-summary {
  margin-top: 28px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3b3158;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .chomchom-v2 .cc-need-card h3 {
    font-size: 1.35rem;
  }
}

@media (min-width: 1200px) {
  .chomchom-v2 .cc-need-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1080px) {
  .chomchom-v2 .cc-needs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .chomchom-v2 .cc-stakeholder-needs {
    margin: 56px 0;
  }

  .chomchom-v2 .cc-needs-grid {
    grid-template-columns: 1fr;
  }

  .chomchom-v2 .cc-need-card {
    padding: 22px 18px;
  }

  .chomchom-v2 .cc-need-card h3 {
    font-size: 1.15rem;
  }
}

/* Hero: V1→V2 배지 */
.chomchom-v2 .cc-hero-renewal-badge {
  margin: 0 0 0.75rem;
}
.chomchom-v2 .cc-hero-renewal-badge__text {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--cc-primary);
  background: rgba(237, 231, 253, 0.95);
  border: 1px solid var(--cc-border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

/* V1→V2 리뉴얼: 선언 */
.chomchom-v2 .cc-renewal-intro__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .chomchom-v2 .cc-renewal-intro__grid {
    grid-template-columns: 1fr minmax(200px, 260px);
    align-items: center;
  }
}
.chomchom-v2 .cc-renewal-intro__sub {
  margin: 0 0 0.75rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--cc-muted);
  max-width: 40rem;
}
.chomchom-v2 .cc-renewal-intro__note {
  margin: 0 0 1.25rem;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--cc-muted);
  max-width: 42rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 248, 225, 0.55);
  border: 1px solid #ffe082;
  border-radius: var(--cc-radius-sm);
}
.chomchom-v2 .cc-renewal-evidence-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.chomchom-v2 .cc-renewal-evidence-thumb {
  width: calc(50% - 0.25rem);
  max-width: 140px;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--cc-border);
  box-shadow: var(--cc-shadow);
}
@media (min-width: 600px) {
  .chomchom-v2 .cc-renewal-evidence-thumb {
    width: calc(25% - 0.375rem);
    max-width: none;
    flex: 1 1 22%;
    min-width: 100px;
  }
}
.chomchom-v2 .cc-renewal-intro__visual {
  text-align: center;
  padding: 1rem;
  background: var(--cc-surface);
  border: 1px solid var(--cc-border);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(32, 20, 71, 0.06);
}
.chomchom-v2 .cc-renewal-app-icon {
  width: 100px;
  height: auto;
  max-width: 120px;
  border-radius: 22px;
  margin-bottom: 1rem;
}
.chomchom-v2 .cc-renewal-badge-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.chomchom-v2 .cc-renewal-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4527a0;
  background: var(--cc-primary-soft);
  border: 1px solid var(--cc-border);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}

/* 비교 카드 */
.chomchom-v2 .cc-renewal-compare__title {
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
.chomchom-v2 .cc-compare-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .chomchom-v2 .cc-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.chomchom-v2 .cc-compare-card {
  background: #fff;
  border: 1px solid #ece8f7;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 24px rgba(32, 20, 71, 0.06);
}
.chomchom-v2 .cc-compare-card--v2 {
  border-color: rgba(91, 46, 234, 0.35);
  box-shadow: 0 10px 28px rgba(91, 46, 234, 0.09);
}
.chomchom-v2 .cc-compare-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 0.65rem;
}
.chomchom-v2 .cc-compare-label--v2 {
  color: var(--cc-primary);
}
.chomchom-v2 .cc-compare-heading {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.4;
  color: #1d1633;
}
.chomchom-v2 .cc-compare-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #544c6a;
  line-height: 1.7;
  font-size: 0.95rem;
}
.chomchom-v2 .cc-compare-list li {
  margin-bottom: 0.5rem;
}
.chomchom-v2 .cc-compare-foot {
  margin: 1.75rem auto 0;
  max-width: 44rem;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--cc-muted);
}

/* 영상 허브 */
.chomchom-v2 .cc-renewal-media__sub {
  margin: 0 auto 1.5rem;
  max-width: 46rem;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--cc-muted);
}
.chomchom-v2 .cc-media-featured {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .chomchom-v2 .cc-media-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.chomchom-v2 .cc-media-card {
  background: #fff;
  border: 1px solid #ece8f7;
  border-radius: 18px;
  padding: 1.25rem 1.15rem 1.15rem;
  box-shadow: 0 8px 24px rgba(32, 20, 71, 0.05);
}
.chomchom-v2 .cc-media-card__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cc-primary);
  margin-bottom: 0.4rem;
}
.chomchom-v2 .cc-media-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1d1633;
}
.chomchom-v2 .cc-media-card__desc {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #544c6a;
}
.chomchom-v2 .cc-media-card__video {
  border-radius: 12px;
  overflow: hidden;
  background: #0f0a1a;
}
.chomchom-v2 .cc-media-card__video .cc-renewal-video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 12px;
}

/* Video cards (tm02 renewal) — 매핑/캐시 파라미터 적용 후 레이아웃 안정화 */
.chomchom-v2 .ch-video-section {
  margin-top: 1.25rem;
}

.chomchom-v2 .ch-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .chomchom-v2 .ch-video-grid--featured,
  .chomchom-v2 .ch-video-grid--more {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .chomchom-v2 .ch-video-grid--featured {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .chomchom-v2 .ch-video-grid--more {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.chomchom-v2 .ch-video-card__media {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  min-height: 180px;
}

.chomchom-v2 .ch-video-card__video {
  width: 100%;
  display: block;
  background: #000;
}

.chomchom-v2 .ch-video-card__title {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  color: #1d1633;
}
.chomchom-v2 .cc-media-more {
  margin-top: 1.75rem;
  border: 1px solid var(--cc-border);
  border-radius: 18px;
  padding: 0.35rem 1rem 1rem;
  background: var(--cc-surface);
}
.chomchom-v2 .cc-media-more__summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.65rem 0;
  color: var(--cc-text);
  list-style: none;
}
.chomchom-v2 .cc-media-more__summary::-webkit-details-marker {
  display: none;
}
.chomchom-v2 .cc-media-groups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.chomchom-v2 .cc-media-group__title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  color: #1d1633;
}

.chomchom-v2 .cc-media-group__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .chomchom-v2 .cc-media-group__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.chomchom-v2 .cc-media-card--compact .cc-media-card__title {
  font-size: 0.98rem;
}
.chomchom-v2 .cc-media-card--compact .cc-media-card__desc {
  font-size: 0.84rem;
}

/* V2 핵심 4카드 */
.chomchom-v2 .cc-renewal-upgrades .cc-h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.chomchom-v2 .cc-upgrade-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .chomchom-v2 .cc-upgrade-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .chomchom-v2 .cc-upgrade-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.chomchom-v2 .cc-upgrade-card {
  background: #fff;
  border: 1px solid #ece8f7;
  border-radius: 18px;
  padding: 1.35rem 1.15rem;
  box-shadow: 0 8px 22px rgba(32, 20, 71, 0.05);
}
.chomchom-v2 .cc-upgrade-card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  color: #1d1633;
}
.chomchom-v2 .cc-upgrade-card__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #544c6a;
}
.chomchom-v2 .cc-renewal-faq {
  margin-top: 2.25rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.chomchom-v2 .cc-renewal-faq__heading {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}
.chomchom-v2 .cc-renewal-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.chomchom-v2 .cc-renewal-faq__item {
  border: 1px solid var(--cc-border);
  border-radius: 14px;
  padding: 0 0.85rem;
  background: #faf8ff;
}
.chomchom-v2 .cc-renewal-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.85rem 0;
  color: var(--cc-text);
}
.chomchom-v2 .cc-renewal-faq__item p {
  margin: 0 0 0.85rem;
  padding-top: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--cc-muted);
}
.chomchom-v2 .cc-renewal-cta-row {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  .chomchom-v2 .cc-renewal-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.chomchom-v2 .cc-renewal-cta-note {
  margin: 1rem auto 0;
  max-width: 44rem;
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--cc-muted);
}
.chomchom-v2 .cc-renewal-cta-note a {
  color: var(--cc-primary);
  font-weight: 700;
}

/* 참여 확산 보상 시스템 */
.chomchom-v2 .cc-viral-section {
  margin: 90px 0;
}

@media (max-width: 767px) {
  .chomchom-v2 .cc-viral-section {
    margin: 56px 0;
  }
}

.chomchom-v2 .cc-viral-heading {
  text-align: center;
  margin-bottom: 28px;
}

.chomchom-v2 .cc-viral-heading .cc-h2 {
  margin-bottom: 0.65rem;
}

.chomchom-v2 .cc-viral-heading__sub {
  margin: 0 auto 0.75rem;
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--cc-muted);
}

.chomchom-v2 .cc-viral-heading__pipe {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--cc-primary);
  background: var(--cc-primary-soft);
  border: 1px solid var(--cc-border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  display: inline-block;
}

.chomchom-v2 .cc-viral-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
  text-align: left;
}

.chomchom-v2 .cc-viral-step-card,
.chomchom-v2 .cc-viral-benefit-card,
.chomchom-v2 .cc-viral-policy {
  background: #fff;
  border: 1px solid #ece8f7;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(32, 20, 71, 0.06);
}

.chomchom-v2 .cc-viral-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f4efff;
  color: var(--cc-primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.chomchom-v2 .cc-viral-step-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
  color: #1d1633;
}

.chomchom-v2 .cc-viral-step-card__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #544c6a;
}

.chomchom-v2 .cc-viral-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  text-align: left;
}

.chomchom-v2 .cc-viral-benefit-card {
  box-shadow: 0 8px 24px rgba(32, 20, 71, 0.05);
}

.chomchom-v2 .cc-viral-benefit-card__title {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.4;
  color: #1d1633;
}

.chomchom-v2 .cc-viral-benefit-card__desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: #544c6a;
}

.chomchom-v2 .cc-viral-policy {
  margin-top: 28px;
  text-align: left;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.chomchom-v2 .cc-viral-policy__title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1d1633;
}

.chomchom-v2 .cc-viral-policy__list {
  margin: 0;
  padding-left: 1.15rem;
  color: #544c6a;
  font-size: 0.92rem;
  line-height: 1.65;
}

.chomchom-v2 .cc-viral-policy__list li {
  margin-bottom: 0.35rem;
}

.chomchom-v2 .cc-viral-note {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #6a617f;
}

.chomchom-v2 .cc-viral-trustline {
  margin: 1.5rem auto 0;
  max-width: 44rem;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--cc-muted);
}

.chomchom-v2 .cc-viral-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.chomchom-v2 .cc-viral-cta-hint {
  margin: 0.85rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--cc-muted);
}

@media (max-width: 1080px) {
  .chomchom-v2 .cc-viral-steps,
  .chomchom-v2 .cc-viral-benefits {
    grid-template-columns: 1fr;
  }
}

/* IR: 가입·결제·광고 시작 설명 */
.chomchom-v2 .cc-ir-instant {
  border-top: 1px solid var(--cc-border);
  background: linear-gradient(180deg, #faf8ff 0%, var(--cc-surface) 100%);
}

.chomchom-v2 .section-instant-ad {
  padding: 2.5rem 0 2.75rem;
}

.chomchom-v2 .section-instant-ad .cc-h2 {
  max-width: 42rem;
}

.chomchom-model-summary-section {
    width: 100%;
    padding: 40px 16px 56px;
    box-sizing: border-box;
}

.chomchom-model-summary-inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.chomchom-model-summary-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
}
