@charset "UTF-8";

/* =========================================================
   about.css - 회사 소개 페이지 전용 스타일
========================================================= */

/* 미션 & 비전 그리드 */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.vision-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--line-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}
.vision-card:hover {
  transform: translateY(-5px);
}
.vision-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.vision-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  word-break: keep-all;
}

/* 핵심 가치 (ABot Way) 그리드 */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--line-color);
}
.value-num {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
}
.value-num.blue {
  background: var(--brand-blue);
}

.value-text h4 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 5px;
  color: var(--primary-color);
}
.value-text .en-title {
  font-size: 14px;
  color: #8b8b8b;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}
.value-text p {
  font-size: 15px;
  color: var(--text-main);
  font-weight: 500;
  word-break: keep-all;
}

/* 회사 개요 테이블 */
.overview-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-color);
}
.overview-row {
  display: flex;
  border-bottom: 1px solid var(--line-color);
}
.overview-row:last-child {
  border-bottom: none;
}
.overview-label {
  flex: 0 0 150px;
  background: var(--bg-light);
  padding: 20px;
  font-weight: 900;
  color: var(--primary-color);
}
.overview-data {
  flex: 1;
  padding: 20px;
  color: var(--text-light);
}


/* =========================================================
   제품 계획 (Product Road-Map) 스타일
========================================================= */
.roadmap-container {
  max-width: 900px;
  margin: 0 auto;
}

.roadmap-list {
  position: relative;
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

/* 좌측 세로 연결선 (디자인 포인트) */
.roadmap-list::before {
  content: "";
  position: absolute;
  left: 23px; /* 점(dot)의 중앙에 맞춤 */
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(231, 76, 60, 0.4),
    rgba(231, 76, 60, 0.1)
  );
}

.roadmap-item {
  position: relative;
  display: flex;
  gap: 25px;
  align-items: center;
}

.roadmap-dot {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  background: var(--accent-color);
  box-shadow: 0 10px 22px rgba(231, 76, 60, 0.3);
}

.roadmap-box {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line-color);
  border-radius: 16px;
  padding: 25px 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.roadmap-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(231, 76, 60, 0.3);
}

.roadmap-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.roadmap-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.18);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.roadmap-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0;
}

.roadmap-desc {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 32px;
  }
  .overview-row {
    flex-direction: column;
  }
  .overview-label {
    padding: 15px 20px 5px;
    background: var(--white);
  }
  .overview-data {
    padding: 5px 20px 20px;
  }
  .roadmap-list::before {
    left: 19px;
  }
  .roadmap-item {
    gap: 15px;
  }
  .roadmap-dot {
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 10px;
  }
  .roadmap-box {
    padding: 20px;
    border-radius: 14px;
  }
  .roadmap-name {
    font-size: 18px;
  }
}
