/* ============================================================
   ccp.css &#8212; À¯Áöº¸¼ö ¼­ºñ½º (Customer Care Plan) °øÅë ½ºÅ¸ÀÏ
   ´ë»ó ÆäÀÌÁö: index(ºê·£µå Çãºê) / creaform.php / faro.php
   ============================================================ */


/* ±âº» ·¹ÀÌ¾Æ¿ô */
.cc-page {
  font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  color: #1f2937;
  word-break: keep-all;
}
.cc-page * { box-sizing: border-box; }
.cc-container {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
}
.cc-title-intro {
  margin: -8px 0 34px;
  color: #6b7d8e;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}


/* ºê·£µå ¸Þ´º */
.cc-brand-nav {
  margin-bottom: 34px;
  overflow: hidden;
  border: 1px solid #dfe7ef;
  border-radius: 14px;
  background: #fff;
}
.cc-brand-nav-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.cc-brand-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 18px;
  border-right: 1px solid #e5ebf0;
  color: #52687a;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none !important;
  transition: .2s;
}
.cc-brand-tab:last-child { border-right: 0; }
.cc-brand-tab:hover { background: #f3f8fc; color: #1769aa; }
.cc-brand-tab.is-active { background: #1769aa; color: #fff; }
.cc-brand-tab.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-top: 8px solid #1769aa;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}


/* ºê·£µå Ä«µå (Çãºê ÆäÀÌÁö) */
.cc-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.cc-brand-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 390px;
  overflow: hidden;
  border-radius: 19px;
  background: #123f61;
  text-decoration: none !important;
}
.cc-brand-card-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform .4s;
}
.cc-brand-card::after {

  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,29,48,.96) 0%, rgba(5,29,48,.60) 48%, rgba(5,29,48,.12) 100%);
}
.cc-brand-card:hover .cc-brand-card-bg { transform: scale(1.035); }
.cc-brand-card-content { position: relative; z-index: 1; padding: 34px; color: #fff; }
.cc-brand-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 800;
}
.cc-brand-card h4 { margin: 0 0 12px; color: #fff; font-size: 29px; font-weight: 900; }
.cc-brand-card p { margin: 0 0 21px; color: rgba(255,255,255,.84); font-size: 14px; line-height: 1.75; }
.cc-brand-link { font-size: 14px; font-weight: 900; color: #8fdbff; }


/* ºÐÇÒÇü È÷¾î·Î (ºê·£µåº° »ó¼¼ ÆäÀÌÁö) */
.cc-hero {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 42px 44px;
  border: 1px solid #dbe7f1;
  border-radius: 24px;
  background: linear-gradient(135deg, #f4f8fc 0%, #eaf4fb 100%);
  overflow: hidden;
}
.cc-hero-text { flex: 1 1 52%; min-width: 0; }
.cc-hero-media { flex: 1 1 48%; min-width: 0; }
.cc-hero-media img {
  display: block;
  width: 100%;
  height: 324px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15,23,42,.12);
}
.cc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #1769aa;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cc-eyebrow::before { content: ''; width: 28px; height: 2px; background: #38bdf8; }
.cc-hero h4 { margin: 0 0 18px; color: #12384a; font-size: 36px; line-height: 1.3; font-weight: 900; letter-spacing: -.04em; }
.cc-hero p { max-width: 590px; margin: 0; color: #52687a; font-size: 15px; line-height: 1.8; }
.cc-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }


/* ¹öÆ° */
.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
  transition: .2s;
}
.cc-btn-primary { border: 1px solid #159fda; background: #159fda; color: #fff; }
.cc-btn-primary:hover { border-color: #0c87bb; background: #0c87bb; color: #fff; }
.cc-btn-download { border: 1px solid #1769aa; background: #1769aa; color: #fff; }
.cc-btn-download:hover { border-color: #0f568c; background: #0f568c; color: #fff; }
.cc-btn-download i { margin-right: 7px; font-size: 14px; }
.cc-btn-line { border: 1px solid #ccd9e4; background: #fff; color: #334b5e; }
.cc-btn-line:hover { border-color: #1769aa; background: #fff; color: #1769aa; }


/* °øÅë ¼½¼Ç */
.cc-section { padding: 74px 0; }
.cc-section-soft { background: #f5f8fb; }
.cc-section-head { max-width: 770px; margin: 0 auto 38px; text-align: center; }
.cc-section-kicker { margin-bottom: 9px; color: #1769aa; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.cc-section-head h4 { margin: 0 0 14px; color: #102f49; font-size: 31px; line-height: 1.35; font-weight: 900; letter-spacing: -.035em; }
.cc-section-head p { margin: 0; color: #667b8d; font-size: 15px; line-height: 1.8; }


/* ¼­ºñ½º Ä«µå */
.cc-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.cc-service-card {
  min-height: 225px;
  padding: 27px 23px;
  border: 1px solid #e1e8ef;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 9px 25px rgba(15,47,72,.055);
}
.cc-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: #e9f5fc;
  color: #1769aa;
  font-size: 23px;
}
.cc-service-card h5 { margin: 0 0 10px; color: #183b56; font-size: 18px; font-weight: 900; }
.cc-service-card p { margin: 0; color: #66788a; font-size: 14px; line-height: 1.75; }


/* ¼­ºñ½º ÇÃ·£ (±âº» 4¿­ &#8212; ÆäÀÌÁö¿¡ ¸Â°Ô -2 / -3 modifier·Î Ãà¼ÒÇØ¼­ »ç¿ë) */
.cc-plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.cc-plan-grid.cc-plan-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
.cc-plan-grid.cc-plan-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cc-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dfe7ef;
  border-radius: 17px;
  background: #fff;
}
.cc-plan-card.is-featured { border: 2px solid #1769aa; box-shadow: 0 13px 32px rgba(23,105,170,.14); }
.cc-plan-card.is-featured .cc-plan-head { background: #eaf5fc; }
.cc-plan-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #1769aa;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.cc-plan-head { min-height: 138px; padding: 25px 21px 21px; border-bottom: 1px solid #e4ebf1; background: #f2f7fb; }
.cc-plan-head h5 { margin: 0 0 9px; color: #153b59; font-size: 21px; font-weight: 900; }
.cc-plan-head p { margin: 0; color: #607386; font-size: 13px; line-height: 1.6; }
.cc-plan-body { display: flex; flex: 1; flex-direction: column; padding: 21px; }
.cc-plan-list { margin: 0; padding: 0; list-style: none; }
.cc-plan-list li { position: relative; margin: 0 0 11px; padding-left: 19px; color: #4b6173; font-size: 13px; line-height: 1.6; }
.cc-plan-list li::before { content: '\2713'; position: absolute; top: 0; left: 0; color: #18a4e0; font-weight: 900; }
.cc-plan-note { margin-top: auto; padding-top: 14px; border-top: 1px dashed #dce5ed; color: #1769aa; font-size: 12px; font-weight: 800; }


/* ÇÃ·£ ºñ±³Ç¥ (Creaform CCP) */
.cc-compare-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15,47,72,.05);
}
.cc-compare-table { width: 100%; min-width: 760px; border-collapse: collapse; table-layout: fixed; }
.cc-compare-table th,
.cc-compare-table td { padding: 15px 14px; border-bottom: 1px solid #e7edf2; text-align: center; vertical-align: middle; font-size: 13px; line-height: 1.55; }
.cc-compare-table thead th { background: #123f61; color: #fff; font-weight: 900; }
.cc-compare-table thead th:first-child { width: 44%; text-align: left; }
.cc-compare-table tbody th { text-align: left; color: #29465c; font-weight: 800; background: #f8fafc; }
.cc-compare-table tbody tr:last-child th,
.cc-compare-table tbody tr:last-child td { border-bottom: 0; }


.cc-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.cc-status-in { background: #e7f6ed; color: #147a43; }
.cc-status-option { background: #fff4dc; color: #9a6400; }
.cc-status-out { background: #f1f4f7; color: #7a8793; }


/* Ä¶¸®ºê·¹ÀÌ¼Ç ¿É¼Ç (Creaform) */
.cc-cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cc-cal-card { padding: 26px 23px; border: 1px solid #dfe7ef; border-radius: 16px; background: #fff; box-shadow: 0 8px 22px rgba(15,47,72,.05); }
.cc-cal-card h5 { margin: 0 0 12px; color: #173d59; font-size: 19px; font-weight: 900; }
.cc-cal-card p { margin: 0 0 14px; color: #66788a; font-size: 14px; line-height: 1.7; }
.cc-cal-card ul { margin: 0; padding: 0; list-style: none; }
.cc-cal-card li { position: relative; margin: 0 0 9px; padding-left: 18px; color: #52687a; font-size: 13px; line-height: 1.6; }
.cc-cal-card li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: #18a4e0; font-weight: 900; }


/* ¼±ÅÃÇü ¿É¼Ç (Creaform) */
.cc-option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cc-option-card { padding: 26px 23px; border-radius: 16px; background: #fff; border: 1px solid #dfe7ef; }
.cc-option-card h5 { margin: 0 0 10px; color: #173d59; font-size: 18px; font-weight: 900; }
.cc-option-card p { margin: 0; color: #66788a; font-size: 14px; line-height: 1.75; }


/* °í°´ Æ÷ÅÐ ¹è³Ê (Creaform) */
.cc-portal {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f3552, #1769aa);
  color: #fff;
}
.cc-portal h4 { margin: 0 0 14px; color: #fff; font-size: 28px; font-weight: 900; }
.cc-portal p { margin: 0; color: rgba(255,255,255,.84); font-size: 15px; line-height: 1.75; }
.cc-portal-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 14px; margin-top: 22px; padding: 0; list-style: none; }
.cc-portal-list li { position: relative; padding-left: 20px; color: #fff; font-size: 13px; line-height: 1.55; }
.cc-portal-list li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: #8fdbff; font-weight: 900; }
.cc-portal-action { display: flex; justify-content: flex-end; }
.cc-portal .cc-btn-line { background: #fff; color: #1769aa; border-color: #fff; }
.cc-portal .cc-btn-line:hover { background: #eaf5fc; color: #0f568c; }


/* Ãß°¡ ¾È³» Ä«µå (FARO) */
.cc-extra-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 22px; }
.cc-extra-card { padding: 27px; border-radius: 15px; background: #123f61; color: #fff; }
.cc-extra-card:nth-child(2) { background: #1769aa; }
.cc-extra-card h5 { margin: 0 0 9px; color: #fff; font-size: 20px; font-weight: 900; }
.cc-extra-card p { margin: 0; color: rgba(255,255,255,.84); font-size: 14px; line-height: 1.75; }


.cc-small-note { margin-top: 22px; color: #7a8b9b; font-size: 12px; line-height: 1.7; text-align: center; }


/* ÁøÇà ÀýÂ÷ */
.cc-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.cc-step { padding: 24px 21px; border: 1px solid #e2e9f0; border-radius: 14px; background: #fff; }
.cc-step-no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #1769aa;
  color: #fff;
  font-weight: 900;
}
.cc-step h5 { margin: 0 0 8px; color: #183b56; font-size: 17px; font-weight: 900; }
.cc-step p { margin: 0; color: #6b7d8e; font-size: 13px; line-height: 1.65; }


/* ÇÏ´Ü CTA */
.cc-cta { padding: 60px 0; background: linear-gradient(135deg, #0f3552, #1769aa); }
.cc-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; color: #fff; }
.cc-cta h4 { margin: 0 0 9px; color: #fff; font-size: 28px; font-weight: 900; }
.cc-cta p { margin: 0; color: rgba(255,255,255,.83); font-size: 15px; line-height: 1.7; }
.cc-cta-actions { display: flex; flex-shrink: 0; gap: 10px; }
.cc-cta .cc-btn-line { border-color: rgba(255,255,255,.72); background: transparent; color: #fff; }
.cc-cta .cc-btn-line:hover { background: #fff; color: #154a70; }


.cc-page-bottom-space { height: 10px; }


/* ============================================================
   ¹ÝÀÀÇü &#8212; ºê·¹ÀÌÅ©Æ÷ÀÎÆ®º°·Î ÇÏ³ª¾¿¸¸ Á¸Àç (º´ÇÕ ¿Ï·á)
   ============================================================ */
@media (max-width: 1024px) {
  .cc-service-grid,
  .cc-process { grid-template-columns: repeat(2, 1fr); }
  .cc-plan-grid,
  .cc-plan-grid.cc-plan-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cc-cal-grid,
  .cc-option-grid { grid-template-columns: repeat(2, 1fr); }


  .cc-hero { flex-direction: column; align-items: stretch; padding: 30px 26px; }
  .cc-hero-text,
  .cc-hero-media { width: 100%; }
  .cc-hero-media img { height: 280px; }
  .cc-hero h4 { font-size: 30px; }


  .cc-portal { grid-template-columns: 1fr; }
  .cc-portal-action { justify-content: flex-start; }
}


@media (max-width: 769px) {
  .cc-container { width: calc(100% - 28px); }


  .cc-brand-nav-inner { grid-template-columns: 1fr; }
  .cc-brand-tab { min-height: 50px; border-right: 0; border-bottom: 1px solid #e5ebf0; font-size: 13px; }
  .cc-brand-tab:last-child { border-bottom: 0; }
  .cc-brand-tab.is-active::after { display: none; }


  .cc-hero { gap: 22px; padding: 24px 18px; border-radius: 16px; }
  .cc-hero h4 { font-size: 25px; }
  .cc-hero p { font-size: 14px; }
  .cc-hero-media img { height: 220px; border-radius: 13px; }
  .cc-hero .cc-btn { width: 100%; }


  .cc-section { padding: 56px 0; }
  .cc-section-head h4 { font-size: 27px; }


  .cc-service-grid,
  .cc-plan-grid,
  .cc-plan-grid.cc-plan-grid-2,
  .cc-plan-grid.cc-plan-grid-3,
  .cc-process,
  .cc-extra-grid,
  .cc-cal-grid,
  .cc-option-grid { grid-template-columns: 1fr; }


  .cc-portal { padding: 28px 22px; }
  .cc-portal-list { grid-template-columns: 1fr; }
  .cc-portal h4 { font-size: 24px; }


  .cc-cta-inner { display: block; }
  .cc-cta-actions { flex-wrap: wrap; margin-top: 22px; }
  .cc-cta-actions .cc-btn { width: 100%; }
}