/* =============================
   index.css (메인 페이지 전용)
============================= */


/* =========================================

    ⭐ Hero Section
    
========================================= */


/* ==== PC(1024~) ==== */
@media (min-width: 1024px) {

  /* 메인 Hero 래퍼 (필요시 확장용) */
  .hero--main {
    position: relative;
    overflow: visible;
    background-color: #f5fafc;
  }

  /* 비주얼 폭/위치 약간 보정 (필요시 값 조절) */
  .hero--main .hero__visual {
    max-width: 780px;
    margin: 48px auto 0;
  }

  /* 바로 다음 섹션이 Hero 하단과 걸치도록 */
  .page-home .hero--main + .section {
    margin-top: -0px;               /* 섹션을 위로 당김 */
    padding-top: calc(0px + 0px);  /* 원래 상단 패딩(80) + 보정값(80) */
  }
}

/* ==== Mobile(~1023) ==== */
@media (max-width: 1023px) {

  .hero--main {
  background-color: #f5fafc;
  }

  .hero--main .hero__visual {
    max-width: 620px;
    margin-top: 32px;   /* 글로벌 48px 보다 살짝 넉넉하게 */
  }
}



/* =========================================

    ⭐ Summary Section
    
========================================= */


.section--index-summary {
  width: 100%;
  max-width: none;
  background: #f5fafc;
  padding: 0px 20px 60px;
}

.index-summary__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 0px; /* 시작 본문 높이*/
  text-align: center;
}

/* 타이틀 / 서브타이틀 / 본문 */
.index-summary__title {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 700;
}

.index-summary__subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #54707f;
  margin-bottom: 20px;
}

.index-summary__description {
  margin-bottom: 60px;
  color: #3c4f57;
} 

.index-summary__em {
  color: #1680ac;
  font-weight: 700;
}

/* 🔹 카드 2개 가로 배치 (PC + 모바일 동일) */
.index-summary__cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: nowrap;          /* ✅ 세로로 안 떨어지게 고정 */
  margin-bottom: 40px;
}

/* 이 섹션 안에 있는 카드 2개를 2열로 */
.index-summary__cards .card-feature {
  flex: 0 0 48%;              /* ✅ 항상 2개가 한 줄에 들어가도록 */
}

/* 버튼 영역 */
.index-summary__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}


/* ======== Mobile(~1023) ============ */
@media (max-width: 1023px) {
  .section--index-summary {
    padding: 0px 20px 40px;
  }

  .index-summary__title {
    font-size: 30px;
  }

  .index-summary__subtitle {
    font-size: 18px;
  }

  .index-summary__description {
  margin-bottom: 60px;
  color: #3c4f57;
} 

  .index-summary__cards {
    gap: 16px;                /* 간격만 줄이기 */
  }

  .index-summary__actions {
    flex-direction: column;
    gap: 12px;
  }
}



/* =========================================

    ⭐ Story Section
    
========================================= */


.section--insurance-story {
  width: 100%;
  max-width: none;
  padding: 120px 20px;
  background: #ffffff;
}

.story__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

/* 이미지 래퍼 */
.story__graphic {
  margin-bottom: 48px;
}

.story__graphic img {
  max-width: 420px;  /* 필요하면 조정 */
  width: 100%;
  height: auto;
  display: inline-block;
}

/* 타이틀 / 본문 */
.story__title {
  margin: 0 0 24px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.35;
}

.story__description {
  font-size: 20px;
  line-height: 1.7;
  color: #4f5a5f;
}

/* ======== Mobile(~1023) ============ */
@media (max-width: 1023px) {
  .section--insurance-story {
    padding: 80px 20px;
  }

  .story__graphic {
    margin-bottom: 32px;
  }

  .story__graphic img {
    max-width: 260px;
  }

  .story__title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .story__description {
    font-size: 16px;
  }
}




/* =========================================

    ⭐ Pain Point Section
    
========================================= */


.section--insurance-stats {
  width: 100%;
  max-width: none;
  padding: 120px 0;
  background: #f5fafc;
}

/* ==========================
   카드 섹션 (3개)
========================== */

.stats__cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stats-card {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}

.stats-card__value {
  font-size: 32px;
  font-weight: 700;
  color: #0c5672;
  margin-bottom: 8px;
}

.stats-card__label {
  font-size: 16px;
  color: #6d7c85;
}

/* ==========================
   본문
========================== */

.stats__body {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 48px;
}

/* ==========================
   강조 박스 (200만 + α)
========================== */

.stats__highlight {
  width: 100%;
  background: #0c5672;
  padding: 40px 20px;
  border-radius: 16px;
  margin-bottom: 40px;
  text-align: center;
}

/* value + label 정렬 */
.stats__highlight-value {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stats__highlight-label {
  font-size: 16px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

/* 🔥 NEW : 강조 박스 내부 텍스트 그라데이션 적용 */
.stats__highlight-value.text-gradient-light {
  display: inline-block;
}

.stats__highlight-label.text-gradient-light {
  display: inline-block;
}

/* ==========================
   footer 본문
========================== */

.stats__footer {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a4a;
}

/* ======== Mobile(~1023) ============ */
@media (max-width: 1023px) {
  .section--insurance-stats {
    padding: 80px 0;
  }

  .stats__title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .stats__cards {
    flex-direction: column;
    gap: 16px;
  }

  .stats-card {
    padding: 28px 20px;
  }

  .stats-card__value {
    font-size: 28px;
  }

  .stats__highlight-value {
    font-size: 28px;
  }
}




/* =========================================

    ⭐ Product (Desktop + Mobile) Section
    
========================================= */


.section--product {
  width: 100%;
  padding: 120px 0;
  background: #ffffff;
}

.section-block--product {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Eyebrow & Title LEFT ALIGN */
.section--product .section-block__eyebrow {
  text-align: left;
  margin-bottom: 16px;
}

.section--product .section-block__title {
  text-align: left;
  margin-bottom: 64px;
}

/* icon */
.section--product .section-block__eyebrow-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* =========================================
   Product Content
========================================= */

.product__content {
  text-align: center; /* 여기부터 중앙 정렬 */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Desktop Image */
.product__media--desktop {
  margin-top: 48px;
  margin-bottom: 48px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.product__media--desktop img {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  filter: drop-shadow(0px 10px 40px rgba(0,0,0,0.08));
}

/* 설명문 */
.product__text {
  margin: 40px auto 80px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  max-width: 760px;
}

.product__text strong {
  color: #0e6a85;
  font-weight: 700;
}

/* =========================================
   Mobile Screenshots
========================================= */

.product__mobile-wrapper {
  margin: 120px 0 100px; /* 하단 여백 증가 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.product__mobile-container {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 520px; /* 높이 증가 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.product__mobile-img {
  position: absolute;
  width: 260px;
  height: auto;
  border-radius: 32px;
  filter: drop-shadow(0px 15px 35px rgba(0,0,0,0.12));
}

.product__mobile-img--left {
  left: 20px;
  bottom: 30px;
  z-index: 1;
}

.product__mobile-img--right {
  right: 20px;
  top: 30px;
  z-index: 2;
}

/* CTA */
.product__cta {
  margin-top: 80px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.55;
}


/* ======== Mobile(~1023) ============ */
@media (max-width: 1023px) {
  .section--product {
    padding: 80px 0;
  }

  .section-block--product {
    padding: 0 24px;
  }

  .section--product .section-block__title {
    margin-bottom: 48px;
    font-size: 26px;
  }

  .product__media--desktop {
    margin-bottom: 32px;
  }

  .product__text {
    font-size: 15px;
    line-height: 1.65;
    margin: 24px auto 32px;
  }

  .product__mobile-wrapper {
    margin: 48px 0 60px; /* 하단 여백 증가 */
  }

  .product__mobile-container {
    max-width: 420px;
    height: 380px; /* 높이 증가 */
  }

  .product__mobile-img {
    width: 180px;
  }

  .product__mobile-img--left {
    left: 10px;
    bottom: 20px;
  }

  .product__mobile-img--right {
    right: 10px;
    top: 20px;
  }

  .product__cta {
    font-size: 22px;
    margin-top: 48px;
    line-height: 1.5;
  }
}




/* =========================================

    ⭐ Before / After Section
    
========================================= */


.section--compare {
  width: 100%;
  background: #f5f9fc;
  padding: 120px 0;
}

.section-block--compare {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Title */
.section--compare .section-block__title {
  margin-bottom: 56px;
  color: #1b1b1b;
}

/* Eyebrow 아이콘 */
.section--compare .section-block__eyebrow-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* =========================================
   Compare Grid
========================================= */

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* 좌-중앙-우 정확히 */
  gap: 48px;
  align-items: center; /* 세로 가운데 정렬 */
}

/* ------------- Before & After 공통 ------------- */

.compare__col {
  text-align: center;
}

/* 라벨 (Before / After) */
.compare__label {
  padding: 12px 0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 16px;
}

.compare__label--before {
  background: #ffffff;
  color: #0d3750;
}

.compare__label--after {
  background: #0e6a85; /* After용 진한 블루그린 */
  color: #ffffff;
}

/* 박스(이미지 카드) */
.compare__card {
  padding: 24px;
  border-radius: 16px;
}

.compare__card--before {
  background: #ffffff;
}

.compare__card--after {
  background: #0f5c78;
}

.compare__card img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* 텍스트 */
.compare__desc {
  margin-top: 20px;
  font-size: 17px;
  color: #333;
  line-height: 1.5;
}

.compare__desc--after {
  color: #0f5c78;
  font-weight: 600;
}

/* ------------- Center ------------- */

.compare__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.compare__center picture,
.compare__center-img {
  width: 260px; /* PC에서 더 크게 */
  max-width: 100%;
}

.compare__center-desc {
  margin-top: 20px;
  font-size: 17px;
  color: #0e6a85;
  font-weight: 600;
}

/* =========================================
   Body
========================================= */

.compare__body {
  margin-top: 56px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}


/* ======== Mobile(~1023) ============ */
@media (max-width: 1023px) {
  .section--compare {
    padding: 80px 0;
  }

  .section-block--compare {
    padding: 0 24px;
  }

  /* 세로 레이아웃 */
  .compare {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center;
  }

  .compare__center picture,
  .compare__center-img {
    width: 160px; /* 모바일에서 조금 작게 */
  }

  .compare__center {
    width: auto;
  }

  .compare__desc {
    font-size: 15px;
  }

  .compare__body {
    font-size: 15px;
  }
}




/* =========================================

    ⭐ Impact Section
    
========================================= */


.section--impact {
  width: 100%;
  background-color: #ffffff;
  padding: 120px 0;
}

.section-block--impact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Eyebrow: 공통 u-eyebrow + 아이콘/텍스트 정렬 */
.section-block--impact .section-block__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px; /* 아이브로우 아래 여백 */
}

.section-block--impact .section-block__eyebrow-icon {
  width: 24px;
  height: 24px;
}

/* Title – 위/아래 여백 */
.section-block--impact .section-block__title {
  margin-top: 8px;
  margin-bottom: 80px; /* 타이틀 밑과 데이터 그리드 사이 간격 */
}

/* ================================
   1) 상단 3컬럼 카드
================================ */

.section-block--impact .impact-columns {
  display: grid;
  grid-template-columns: 1fr 1.9fr 1fr; /* 가운데 컬럼만 살짝 넓게 */
  gap: 24px;
  margin-bottom: 40px; /* 3컬럼 아래 여백 */
}

.section-block--impact .impact-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-block--impact .impact-column__label {
  padding: 16px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(88, 149, 166, 1) 0%,
    rgba(156, 233, 255, 1) 100%
  );
}

/* 공통 화이트 카드 박스 */
.section-block--impact .impact-column__body {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #d4d4d4;
  background-color: #ffffff;
  box-shadow: 0 0 16px rgba(75, 86, 108, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 500px;
  overflow: hidden;
}

/* 기본 카드 (환자 / 수요) */
.section-block--impact .impact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  border-radius: 16px;
  background-color: #f0faff;
  flex: 1;
}

.section-block--impact .impact-card__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

.section-block--impact .impact-card__text {
  text-align: center;
  font-weight: 700;
  color: #424242;
  font-size: 17px;
  line-height: 1.4;
}

.section-block--impact .impact-card__value {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #138caf;
}

/* ================================
   병원 가치 – 가운데 컬럼 전용 레이아웃
================================ */

.section-block--impact .impact-column__body--hospital {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-block--impact .impact-hospital-card {
  background-color: #f0faff;
  border-radius: 16px;
  padding: 20px;
}

/* 상단 카드: 아이콘+타이틀 + 그래프 */
.section-block--impact .impact-hospital-card--top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 200px;
}

.section-block--impact .impact-hospital-top-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-right: 8px;
}

.section-block--impact .impact-hospital-icon-circle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-block--impact .impact-hospital-icon-circle img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.section-block--impact .impact-hospital-top-title {
  font-size: 17px;
  font-weight: 700;
  color: #424242;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}

.section-block--impact .impact-hospital-top-chart {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-block--impact .impact-hospital-top-chart img {
  width: 100%;
  max-height: 180px;
  height: auto;
  object-fit: contain;
}

/* 하단 카드 – 2컬럼 메트릭 */
.section-block--impact .impact-hospital-card--bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px;
}

.section-block--impact .impact-hospital-metric {
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.section-block--impact .impact-hospital-metric__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-block--impact .impact-hospital-metric__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.section-block--impact .impact-hospital-metric__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.section-block--impact .impact-hospital-metric__title {
  font-size: 17px;
  font-weight: 700;
  color: #424242;
}

.section-block--impact .impact-hospital-metric__value {
  font-size: 20px;
  font-weight: 700;
  color: #138caf;
}

/* ================================
   텍스트들 간 세로 간격
================================ */

.section-block--impact .impact-footnote {
  font-size: 14px;
  color: #8b95a1;
  text-align: center;
  margin: 8px 0 24px;
}

.section-block--impact .impact-summary {
  font-size: 18px;
  line-height: 1.7;
  color: #424242;
  margin-bottom: 120px;
}

/* ================================
   2) 지도 + 증빙 이미지
================================ */

.section-block--impact .impact-proof {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-block--impact .impact-proof__map {
  flex: 0 0 42%;
}

.section-block--impact .impact-proof__assets {
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-block--impact .impact-proof__map img {
  display: block;
  width: 100%;
  height: auto;
}

.section-block--impact .impact-proof__asset--wide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-block--impact .impact-proof__asset-row {
  display: flex;
  gap: 16px;
}

.section-block--impact .impact-proof__asset-row .impact-proof__asset {
  flex: 1 1 0;
}

.section-block--impact .impact-proof__asset {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-block--impact .impact-proof__asset img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background-color: #ffffff;
  object-fit: contain;
}

.section-block--impact .impact-proof__asset figcaption {
  font-size: 14px;
  color: #8b95a1;
}

.section-block--impact .impact-proof__asset figcaption::before {
  content: "| ";
  color: #5895a6;
}

/* ================================
   3) 데이터 자산 카드
================================ */

.section-block--impact .impact-assets {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.section-block--impact .impact-assets__label {
  padding: 16px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(88, 149, 166, 1) 0%,
    rgba(156, 233, 255, 1) 100%
  );
}

.section-block--impact .impact-assets__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.section-block--impact .impact-asset-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(75, 86, 108, 0.2);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-block--impact .impact-asset-card__value {
  font-size: 26px;
  font-weight: 600;
  color: #175c77;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.section-block--impact .impact-asset-card__prefix {
  font-size: 18px;
}

.section-block--impact .impact-asset-card__label {
  font-size: 16px;
  color: #8b95a1;
}

.section-block--impact .impact-assets__summary {
  font-size: 18px;
  line-height: 1.7;
  color: #424242;
}


/* ======== Mobile(~1023) ============ */
@media (max-width: 1023px) {
  .section-block--impact {
    padding: 0px 20px;
  }

  .section-block--impact .impact-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .section-block--impact .impact-column__body {
    height: auto;
    box-shadow: 0 0 12px rgba(75, 86, 108, 0.15);
  }

  .section-block--impact .impact-card {
    flex: none;
  }

  .section-block--impact .impact-hospital-card--top {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 12px;
  }

  .section-block--impact .impact-hospital-top-main {
    flex-direction: row;
    justify-content: flex-start;
    padding-right: 0;
    align-self: flex-start;
  }

  .section-block--impact .impact-hospital-top-title {
    text-align: left;
    white-space: normal;
  }

  .section-block--impact .impact-hospital-top-chart {
    justify-content: center;
  }

  .section-block--impact .impact-hospital-card--bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .section-block--impact .impact-hospital-metric {
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
    padding: 16px;
  }

  .section-block--impact .impact-hospital-metric__text {
    align-items: flex-start;
    text-align: left;
  }

  .section-block--impact .impact-card__text {
    font-size: 16px;
  }

  .section-block--impact .impact-card__value {
    font-size: 16px;
  }

  .section-block--impact .impact-summary {
    font-size: 16px;
  }

  .section-block--impact .impact-proof {
    flex-direction: column;
    max-width: 100%;
    gap: 24px;
    margin-bottom: 32px;
  }

  .section-block--impact .impact-proof__map,
  .section-block--impact .impact-proof__assets {
    flex: 1 1 100%;
  }

  .section-block--impact .impact-proof__map {
    max-width: 400px;
    margin: 0 auto;
  }

  .section-block--impact .impact-proof__assets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .section-block--impact .impact-proof__asset--wide {
    grid-column: 1 / -1;
  }

  .section-block--impact .impact-proof__asset-row {
    display: contents;
  }

  .section-block--impact .impact-proof__asset figcaption {
    font-size: 12px;
  }

  .section-block--impact .impact-assets__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .section-block--impact .impact-asset-card {
    padding: 20px 16px;
  }

  .section-block--impact .impact-asset-card__value {
    font-size: 22px;
  }

  .section-block--impact .impact-assets__summary {
    font-size: 15px;
  }
}




/* =========================================

    ⭐ Differentiation Section
    
========================================= */


.section--differentiator {
  width: 100%;
  background: #28465a;      
  padding: 80px 0;         
}

/* 텍스트 영역 – 공통 그리드와 정렬 맞추기 */
.section-block--differentiator {
  max-width: 1200px;       
  margin: 0 auto;
  padding: 0 48px;
}

/* eyebrow 색상 & 아이콘 */
.section--differentiator .section-block__eyebrow {
  margin-bottom: 12px;
}

.section--differentiator .section-block__eyebrow span {
  color: #b5dff1;
}

.section--differentiator .section-block__eyebrow-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.section--differentiator .section-block__title {
  color: #ffffff;
  margin-bottom: 40px;
}

.section--differentiator .section-block__body {
  color: rgba(255, 255, 255, 0.9);
}

/* 본문 여백/라인 조정 */
.differentiator__body {
  margin-top: 40px;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* 가운데 비교 이미지 */
.differentiator__image {
  margin-top: 24px;
  text-align: center;
}

.differentiator__image img {
  width: 100%;
  max-width: 1040px;       
  display: inline-block;
}


/* ======== Mobile(~1023) ============ */
@media (max-width: 1023px) {
  .section--differentiator {
    padding: 64px 0 72px;
  }

  .section-block--differentiator {
    padding: 0 24px;
  }

  .differentiator__body {
    font-size: 14px;    
    margin-bottom: 24px;
  }
}



/* =========================================

    ⭐ Team Section
    
========================================= */


.section--team {
  background-color: #f5fafc;
}

.section--team .section-block--team {
  padding-top: 80px;
  padding-bottom: 96px;
}

.section--team .section-block__eyebrow-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* =========================================
   조직도 전체 래퍼
========================================= */
.team-org {
  margin-top: 48px;
  position: relative;
}

/* =========================================
   상단 바 & CEO 박스
========================================= */
.team-org__bar {
  width: 100%;
  padding: 18px 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, #2f7da2 0%, #68d8ff 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.team-org__bar-label {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
}

.team-org__ceo {
  margin: 32px auto 0;
  width: 100%;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid #25a1d1;
  background-color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.team-org__ceo-role,
.team-org__ceo-name {
  font-weight: 700;
  font-size: 20px;
  color: #108fb4;
}

/* CEO 아래 수직선 (두께 1px) */
.team-org__ceo::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -32px;
  width: 1px;
  height: 32px;
  background-color: #19a5c9;
}

/* =========================================
   연결 라인 컨테이너
========================================= */
.team-org__connector {
  position: relative;
  height: 32px;
  margin: 0;
}

/* CEO 밑 → HEAD/READ 사이 */
.team-org__connector--heads {
  margin-top: 32px;
}

/* HEAD/READ 밑 → 하단 3팀 사이 */
.team-org__connector--members {
  margin-top: 32px;
}

/* 수평선 (두께 1px) */
.team-org__connector-line {
  position: absolute;
  top: 0;
  height: 1px;
  background-color: #19a5c9;
}

/* HEAD/READ 연결선 - 첫 카드 중앙(25%) ~ 둘째 카드 중앙(75%) */
.team-org__connector--heads .team-org__connector-line {
  left: 25%;
  right: 25%;
}

/* 하단 팀 연결선 - 첫 카드 중앙(16.66%) ~ 셋째 카드 중앙(83.33%) */
.team-org__connector--members .team-org__connector-line {
  left: 16.66%;
  right: 16.66%;
}

/* 수평선 양끝에서 내려가는 수직선 (두께 1px) */
.team-org__connector--heads::before,
.team-org__connector--heads::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 32px;
  background-color: #19a5c9;
}

.team-org__connector--heads::before {
  left: 25%;
  transform: translateX(-50%);
}

.team-org__connector--heads::after {
  right: 25%;
  transform: translateX(50%);
}

/* 하단 팀용 수직선 (두께 1px) */
.team-org__connector--members::before,
.team-org__connector--members::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 32px;
  background-color: #19a5c9;
}

.team-org__connector--members::before {
  left: 16.66%;
  transform: translateX(-50%);
}

.team-org__connector--members::after {
  right: 16.66%;
  transform: translateX(50%);
}

/* 중간 카드(서비스 운영팀) 위로 올라가는 수직선 (두께 1px) */
.team-org__connector--members .team-org__connector-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 32px;
  background-color: #19a5c9;
}

/* =========================================
   공통 카드 스타일
========================================= */
.team-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid #d5e5eb;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
}

.team-card__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.team-card__title-en,
.team-card__title-name {
  font-weight: 700;
  font-size: 20px;
  color: #108fb4;
}

.team-card__body {
  text-align: center;
}

.team-card__line {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4f55;
}

.team-card__line + .team-card__line {
  margin-top: 8px;
}

.team-card__title-sm {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #2c3138;
  margin-bottom: 6px;
}

.team-card__line-sm {
  font-size: 15px;
  text-align: center;
  color: #646f7c;
}

/* =========================================
   HEAD / READ 행 (2단)
========================================= */
.team-org__row--heads {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  position: relative;
}

.team-org__row--heads .team-card {
  flex: 1 1 0;
  max-width: 480px;
  padding: 32px 32px 28px;
  background-color: #f6fdff;
}

/* HEAD/READ 카드 아래로 내려가는 수직선 (두께 1px) */
.team-org__row--heads .team-card::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 32px;
  background-color: #19a5c9;
}

/* =========================================
   하단 팀 행 (3단)
========================================= */
.team-org__row--members {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.team-org__row--members .team-card {
  flex: 1 1 0;
  max-width: 360px;
  padding: 28px 24px 24px;
  background-color: #ffffff;
}

/* =========================================
   Summary 텍스트
========================================= */
.team-org__summary {
  margin-top: 32px;
}


/* ======== Mobile(~1023) ============ */
@media (max-width: 1023px) {
  .section--team .section-block--team {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .team-org {
    margin-top: 40px;
  }

  .team-org__bar {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .team-org__bar-label,
  .team-org__ceo-role,
  .team-org__ceo-name {
    font-size: 18px;
  }

  .team-org__ceo {
    padding: 16px 18px;
    border-radius: 12px;
  }

  .team-org__ceo::after {
    bottom: -24px;
    height: 24px; /* 두께는 1px로 유지 */
  }

  .team-org__connector {
    height: 24px;
  }

  .team-org__connector--heads,
  .team-org__connector--members {
    margin-top: 24px;
  }

  .team-org__connector--heads::before,
  .team-org__connector--heads::after,
  .team-org__connector--members::before,
  .team-org__connector--members::after,
  .team-org__connector--members .team-org__connector-line::after {
    height: 24px; /* 세로 길이만 줄임, 두께는 1px */
  }

  .team-org__row--heads {
    gap: 32px;
  }

  .team-org__row--heads .team-card {
    padding: 24px 16px 22px;
  }

  .team-org__row--heads .team-card::after {
    bottom: -24px;
    height: 24px;
  }

  .team-org__row--members {
    gap: 16px;
  }

  .team-org__row--members .team-card {
    padding: 20px 14px 18px;
  }

  .team-card__title-en,
  .team-card__title-name {
    font-size: 18px;
  }

  .team-card__line,
  .team-card__title-sm,
  .team-card__line-sm {
    font-size: 15px;
  }

  .team-org__summary {
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .team-org__row--heads,
  .team-org__row--members {
    gap: 12px;
  }

  .team-org__row--heads .team-card,
  .team-org__row--members .team-card {
    padding: 16px 12px;
  }

  .team-card__title-en,
  .team-card__title-name {
    font-size: 16px;
  }

  .team-card__line,
  .team-card__title-sm {
    font-size: 14px;
  }

  .team-card__line-sm {
    font-size: 13px;
  }
}




/* =========================================

    ⭐ Partners Section
    
========================================= */


/* 섹션 배경 */
.section--partners {
  background: #ffffff;
}

/* 텍스트 영역 (eyebrow + 제목 + 본문) */
.section-block--partners {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 0px;
}

/* eyebrow 아이콘 */
.section--partners .section-block__eyebrow-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

/* 본문 텍스트*/
.section--partners .section-block__body {
  margin-top: 12px;
  margin-bottom: 48px;      /* 본문과 롤링 로고 사이 간격 */
}

/* ---------------------------------
   롤링 로고 영역 (풀브리드 100vw)
---------------------------------- */

/* 브라우저 전체 폭 사용 */
.partners-logos--full {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);   /* 가운데 기준으로 100vw 정렬 */
  overflow: hidden;
  padding: 12px 0 72px;          /* 위/아래 여백 (아래는 Final CTA와 간격) */
  background: #ffffff;
}

/* 실제 움직이는 트랙 */
.partners-logos__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: partners-scroll 220s linear infinite;  /* 데스크탑 기준 속도 */
}

/* hover 시 일시정지 */
.partners-logos--full:hover .partners-logos__track {
  animation-play-state: paused;
}

/* 로고 카드 */
.partners-logo {
  flex: 0 0 auto;
  width: 160px;       /* 카드 폭 */
  height: 64px;       /* 카드 높이 */
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 로고 이미지: 영역 안에서 비율 유지하며 꽉 채우기 */
.partners-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 롤링 애니메이션 (1~31 + 1~31 구조에서 -50%) */
@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 모션 줄이기 설정한 사용자에겐 멈춤 (선택사항) */
@media (prefers-reduced-motion: reduce) {
  .partners-logos__track {
    animation: none;
  }
}

/* ======== Mobile(~1023) ============ */
@media (max-width: 1023px) {
  /* 텍스트 블록 패딩 – 모바일도 그리드 유지 */
  .section-block--partners {
    padding: 56px 24px 24px;
  }

  .section--partners .section-block__body {
    margin-bottom: 40px;
  }

  /* 모바일에서는 더 느리게 흘러가도록 duration만 변경 */
  .partners-logos__track {
    gap: 20px;
    animation-duration: 300s;
  }

  .partners-logo {
    width: 140px;
    height: 56px;
    padding: 6px 14px;
  }
}




/* =========================================

    ⭐ Final CTA Section
    
========================================= */


.section--final-cta {
  width: 100%;
  background: #28465a;   
  color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}

.section-block--final-cta {
  max-width: 1200px;     
  margin: 0 auto;
  padding: 56px 48px 64px; 
}

/* eyebrow */
.section--final-cta .section-block__eyebrow {
  margin-bottom: 16px;
}

.section--final-cta .section-block__eyebrow span {
  color: rgba(255, 255, 255, 0.82);
}

/* 헤드: 타이틀 + 버튼 */
.final-cta__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.final-cta__title {
  margin: 0;
}


/* chip 버튼 */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #28465a;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.chip__icon {
  font-size: 14px;
  line-height: 1;
}

/* PC: 오른쪽 플로팅 버튼 */
@media (min-width: 1024px) {
  .section-block--final-cta {
    padding: 56px 48px 72px;  
  }

  .final-cta__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .final-cta__title {
    max-width: 640px;
  }

  .chip.chip--inquiry {
    width: auto;
    white-space: nowrap;
  }
}

/* ======== Mobile(~1023) ============ */
@media (max-width: 1023px) {
  .section-block--final-cta {
    padding: 40px 24px 48px;  
  }

  .final-cta__head {
    align-items: flex-start;
  }

  .chip.chip--inquiry {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .final-cta__title {
    font-size: 24px;
    line-height: 1.5;
  }
}

