/* business-products.css - Auto-merged from 5 section files */
/* Do not edit directly - regenerate with merge_section_css.py */

/* ========== 01-hero-section ========== */
/* Business Products - Hero Section */
.bp-hero {
  position: relative; /* brighten-in 오버레이 기준 */
  width: 100%;
  height: 33.75rem; /* 540px */
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Figma: justifyContent flex-end */
  gap: 0.625rem; /* 10px */
  padding: 3.75rem 0; /* 60px 0 — 좌우 거터 제거(콘텐츠 1280px + auto 마진) */
  box-sizing: border-box;
  background-image: url("../assets/images/business-products/hero-bg-70a549.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 히어로 배경: 진입 즉시 서서히 밝아짐 (어두운 오버레이 페이드아웃) — 1.md Section 1 */
.bp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1; /* 배경 위, 타이틀(z-index:2) 아래 */
  background-color: #0d0f0e;
  pointer-events: none;
  animation: bp-hero-brighten 1.5s ease both;
}
@keyframes bp-hero-brighten {
  from { opacity: 0.85; }
  to   { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bp-hero::after { animation: none; opacity: 0; }
}

.bp-hero__content {
  position: relative;
  z-index: 2; /* 오버레이 위로 타이틀 노출 */
  width: 80rem; /* 1280px 고정 */
  min-width: 80rem; /* 브라우저가 줄어도 1280px 유지(좌우 마진만 사라짐) */
  margin-inline: auto; /* 좌우 마진 auto → 가운데 정렬 */
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
}

.bp-hero__title {
  margin: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 4.375rem; /* 70px */
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.bp-hero__line {
  display: block;
}

.bp-hero__bold {
  font-weight: 700;
}

.bp-hero__light {
  font-weight: 300;
}

.bp-hero__dark {
  color: #222222;
}

.bp-hero__white {
  color: #ffffff;
}

/* Tablet */
@media (max-width: 1199px) {
  .bp-hero {
    height: auto;
    min-height: 26rem;
    padding-block: 4rem;
    padding-inline: 6%;
  }

  .bp-hero__content {
    width: 100%;
    min-width: 0; /* 태블릿 이하: 고정폭 해제 → 유동형 */
    margin-inline: 0;
  }

  .bp-hero__title {
    font-size: clamp(2rem, 5.5vw, 4.375rem);
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Figma 모바일 히어로: 402x540 세로 배경, 하단 좌측 정렬, 타이틀 48px */
  .bp-hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 402 / 540;
    padding: 2rem 0.9375rem; /* 32px 15px */
    background-image: url("../assets/images/business-products/hero-bg-mobile.jpg");
    background-position: center;
  }

  .bp-hero__content {
    width: 100%;
  }

  .bp-hero__title {
    font-size: clamp(2.5rem, 12vw, 3rem); /* 48px @402 */
    line-height: 1.19;
  }
}

/* ========== 02-two-track-business-pipeline-소개 ========== */
/* Two-Track Business Pipeline 소개 섹션 */

.pipeline-intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem; /* 48px */
  padding: 6.25rem 0; /* 100px */
  background-color: #ffffff;
}

.pipeline-intro__content {
  width: 100%;
  max-width: 80rem; /* 1280px */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem; /* 48px */
}

/* Indexing (breadcrumb + title) */
.pipeline-intro__indexing {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem; /* 10px */
}

.pipeline-intro__breadcrumb {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.25rem; /* 20px */
  line-height: 1.4;
  color: #0e1b2b;
}

.pipeline-intro__title {
  font-family: "Pretendard", sans-serif;
  font-size: 3.125rem; /* 50px */
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #222222;
}

.pipeline-intro__title-bold {
  font-weight: 700;
}

.pipeline-intro__title-light {
  font-weight: 300;
}

/* Overlay (centered heading block with blur) */
.pipeline-intro__overlay {
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0; /* 80px */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pipeline-intro__heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem; /* 24px */
  text-align: center;
}

.pipeline-intro__eyebrow {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.5rem; /* 24px */
  line-height: 1.4;
  color: #e33345;
}

.pipeline-intro__lead {
  width: 100%;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 3.125rem; /* 50px */
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #222222;
}

.pipeline-intro__desc {
  width: 100%;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.5;
  color: #222222;
}

/* Visual (full-width background; logo anchored near bottom-center per Figma) */
.pipeline-intro__visual {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 51.8125rem; /* 829px */
  background-image: url("../assets/images/business-products/pipeline-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pipeline-intro__logo {
  position: absolute;
  left: 50%; /* Figma left:842 ≈ horizontal center of the 1920 frame */
  bottom: 10.412rem; /* 166.59px from the visual bottom (Figma) */
  transform: translateX(-50%);
  width: 14.6875rem; /* 235px */
  height: 15.5rem; /* 248px */
  display: flex;
  justify-content: center;
  align-items: center;
}

.pipeline-intro__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===================== Responsive ===================== */

/* Tablet */
@media (max-width: 1199px) {
  .pipeline-intro {
    padding: 5rem 0;
  }

  .pipeline-intro__content {
    max-width: 100%;
    padding-inline: 5%;
  }

  .pipeline-intro__title {
    font-size: 2.5rem;
  }

  .pipeline-intro__lead {
    font-size: 2.5rem;
  }

  .pipeline-intro__overlay {
    padding: 4rem 0;
  }

  .pipeline-intro__visual {
    height: 40rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Figma 모바일: 폰트 38/24/18, heading 좌측정렬, 비주얼 402x308 + 로고 중앙 */
  .pipeline-intro {
    padding: 5rem 0; /* 80px */
    gap: 3rem; /* 48px */
  }

  .pipeline-intro__content {
    gap: 3rem; /* 48px */
    padding-inline: 0.9375rem; /* 15px */
  }

  .pipeline-intro__breadcrumb {
    font-size: 1.125rem; /* 18px */
  }

  .pipeline-intro__title {
    font-size: 2.375rem; /* 38px */
  }

  .pipeline-intro__overlay {
    padding: 3rem 0; /* 48px (Figma overlay 상하 패딩) */
  }

  /* 모바일은 좌측 정렬 (Figma al=LEFT) */
  .pipeline-intro__heading {
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem; /* 24px */
  }

  .pipeline-intro__eyebrow {
    font-size: 1.5rem; /* 24px */
  }

  .pipeline-intro__lead {
    font-size: 2.375rem; /* 38px */
  }

  .pipeline-intro__desc {
    font-size: 1.125rem; /* 18px */
  }

  /* 하단 비주얼: 402x308 사진 + 로고 중앙 */
  .pipeline-intro__visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 402 / 308;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pipeline-intro__logo {
    position: static;
    transform: none;
    inset: auto;
    width: 7.9375rem; /* 127px */
    height: auto;
    aspect-ratio: 127 / 134;
  }
}

/* ========== 03-track-1-cosmeceutical ========== */
/* Track 1. Cosmeceutical 섹션 */

.track1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6.25rem 0; /* 100px 0 */
  background-color: #ffffff;
}

.track1__content {
  width: 100%;
  max-width: 80rem; /* 1280px */
  display: flex;
  flex-direction: column;
  gap: 3rem; /* 48px */
}

/* 텍스트 블록 */
.track1__text {
  display: flex;
  flex-direction: column;
  gap: 3.75rem; /* 60px */
}

.track1__heading {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
}

.track1__eyebrow {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.5rem; /* 24px */
  line-height: 1.4;
  color: #222222;
}

.track1__eyebrow-accent {
  font-family: "Pretendard", sans-serif;
  font-weight: 900;
  font-size: 2.5rem; /* 40px */
  line-height: 1.4;
  color: #e33345;
}

.track1__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 3.125rem; /* 50px */
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #222222;
}

.track1__desc {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.5;
  color: #454545;
}

/* 리스트 */
.track1__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
  list-style: none;
  margin: 0;
  padding: 0;
}

.track1__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem; /* 16px */
}

.track1__item-icon {
  flex: 0 0 auto;
  display: flex;
  padding-top: 0.25rem; /* 4px (Margin frame) */
}

.track1__item-icon img {
  width: 1.25rem; /* 20px */
  height: 1.25rem;
  display: block;
}

.track1__item-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem; /* 12px */
}

.track1__item-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.5rem; /* 24px */
  line-height: 1.4;
  color: #222222;
}

.track1__item-desc {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.5;
  color: #222222;
}

/* 하단 비주얼 */
.track1__visual {
  width: 100%;
  height: 31.25rem; /* 500px */
  border-radius: 3.75rem; /* 60px */
  overflow: hidden;
}

.track1__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================== Responsive ===================== */

/* Tablet */
@media (max-width: 1199px) {
  .track1 {
    padding: 5rem 0;
  }

  .track1__content {
    max-width: 100%;
    padding-inline: 5%;
  }

  .track1__title {
    font-size: 2.5rem;
  }

  .track1__eyebrow-accent {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Figma 모바일: 폰트 38/24/18, eyebrow 전부 레드 24px, 이미지 372x500 r48 */
  .track1 {
    padding: 3rem 0; /* 48px (Figma Section pad) */
  }

  .track1__content {
    gap: 3rem; /* 48px */
    padding-inline: 0.9375rem; /* 15px */
  }

  .track1__text {
    gap: 3.75rem; /* 60px */
  }

  .track1__heading {
    gap: 1.5rem; /* 24px */
  }

  /* Figma 모바일 eyebrow: "Track 1. Cosmeceutical" 전부 레드 24px */
  .track1__eyebrow {
    font-size: 1.5rem; /* 24px */
    color: #e33345;
  }

  .track1__eyebrow-accent {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
  }

  .track1__title {
    font-size: 2.375rem; /* 38px */
  }

  .track1__desc {
    font-size: 1.125rem; /* 18px */
  }

  /* 아이콘 + 타이틀/설명 세로 정렬 */
  .track1__item-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem; /* 6px (Figma Item gap) */
  }

  .track1__item-title {
    font-size: 1.5rem; /* 24px */
  }

  .track1__item-desc {
    font-size: 1.125rem; /* 18px */
  }

  .track1__visual {
    height: auto;
    aspect-ratio: 372 / 500; /* Figma 세로형 제품 이미지 */
    border-radius: 3rem; /* 48px (Figma r48) */
  }
}

/* ========== 04-track-2-regenerative-medicine ========== */
/* ============================================
   Track 2 - Regenerative Medicine Section
   ============================================ */

.track2-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6.25rem 0 12.5rem; /* 100px 0 200px */
  background-color: #ffffff;
}

.track2-inner {
  width: 100%;
  max-width: 80rem; /* 1280px */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.75rem; /* 60px */
}

/* ---------- Left: Text ---------- */
.track2-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3.75rem; /* 60px between heading group and list */
}

.track2-heading {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
}

.track2-eyebrow {
  color: #e33345;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.5rem; /* 24px */
  line-height: 1.4;
  text-align: left;
}

.track2-eyebrow-bold {
  font-weight: 900;
  font-size: 2.5rem; /* 40px */
  text-transform: capitalize;
}

.track2-title {
  color: #222222;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 3.125rem; /* 50px */
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: left;
}

.track2-desc {
  color: #454545;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.5;
  text-align: left;
}

/* ---------- List ---------- */
.track2-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
  list-style: none;
  margin: 0;
  padding: 0;
}

.track2-list-item {
  display: flex;
  flex-direction: row;
  gap: 1rem; /* 16px */
}

.track2-list-icon {
  flex: 0 0 auto;
  padding-top: 0.25rem; /* 4px margin top */
  display: inline-flex;
}

.track2-list-icon img {
  width: 1.25rem; /* 20px */
  height: 1.25rem;
  display: block;
}

.track2-list-body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem; /* 6px */
}

.track2-list-label {
  color: #454545;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.5rem; /* 24px */
  line-height: 1.3;
}

.track2-list-value {
  color: #454545;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.5;
}

/* ---------- Right: Circular Image ---------- */
.track2-media {
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.track2-media-circle {
  width: 32.5rem; /* 520px */
  height: 32.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.track2-media-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   Tablet (max-width: 1199px)
   ============================================ */
@media (max-width: 1199px) {
  .track2-section {
    padding: 5rem 5% 7.5rem;
  }

  .track2-inner {
    gap: 2.5rem;
  }

  /* drop the desktop (640px-tuned) line breaks; let the text wrap naturally */
  .track2-desc br {
    display: none;
  }

  .track2-media-circle {
    width: 26rem;
    height: 26rem;
  }
}

/* ============================================
   Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Figma 모바일: 폰트 38/24/18, eyebrow 24px, 이미지 둥근 사각형 */
  .track2-section {
    padding: 3rem 0.9375rem 5rem; /* 48/15/80 */
  }

  .track2-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 3rem; /* 48px */
  }

  .track2-text {
    gap: 3.75rem; /* 60px */
  }

  .track2-eyebrow-bold {
    font-size: 1.5rem; /* 24px (Figma 모바일) */
  }

  .track2-title {
    font-size: 2.375rem; /* 38px */
  }

  /* 라벨/값 세로 정렬 */
  .track2-list-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem; /* 6px */
  }

  .track2-list-label {
    font-size: 1.5rem; /* 24px */
  }

  /* 이미지: 텍스트 아래, 둥근 사각형(풀폭) */
  .track2-media {
    order: 2;
    align-items: center;
  }

  .track2-media-circle {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%; /* 원형 */
  }
}

