/* ===== SOCIAL INTRO ===== */
.social-intro {
  padding: 50px 0;
  text-align: center;
}

.social-intro p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-text);
  /* max-width: 750px; */
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--color-text);
  text-align: center;
  max-width: 650px;
  margin: -20px auto 20px;
  line-height: 1.6;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-dark);
  margin-bottom: 24px;
}

/* ===== EMPLOYEE WELFARE ===== */
.employee-welfare {
  padding: 60px 0;
  text-align: center;
}

.welfare-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.welfare-card {
  background: var(--color-bg);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: left;
}

.welfare-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.welfare-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.welfare-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.welfare-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

/* ===== HUMAN CAPITAL ===== */
.human-capital {
  padding: 60px 0;
  text-align: center;
}

.capital-list {
  max-width: 500px;
  margin: 0 auto 24px;
  text-align: center;
  padding-left: 0;
}

.capital-list li {
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: 2.2;
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.capital-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--color-text-light);
  font-size: 0.6rem;
  color: var(--color-text-light);
  flex-shrink: 0;
}

.capital-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== DIVERSITY ===== */
.diversity-section {
  padding: 60px 20px;
  background: #000000;
}

.diversity-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  color: var(--color-white);
}

.diversity-inner h2 {
  /* font-size: 1.8rem;
  font-weight: 700; */
  margin: 0 16px;
  text-align: center;
}

.diversity-intro {
  font-size:1.8rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.diversity-boxes {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.diversity-box-text {
  background: #333;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diversity-box-image {
  background: #666;
  border-radius: 16px;
  min-height: 180px;
}
.diversity-box-image img{
  border-radius: 16px;
}

.diversity-list {
  max-width: none;
  margin: 0;
  padding-left: 0;
  list-style: none;
  width: fit-content;
}

.diversity-list li {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  list-style: none;
  padding-left: 0;
  position: relative;
  margin-bottom: 12px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.diversity-list li::before {
  content: '✓';
  position: static;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: #fff;
  margin-top: 4px;
}

/* ===== COMMUNITY CSR ===== */
.community-csr {
  padding: 80px 0;
  text-align: center;
}

.csr-carousel {
  position: relative;
  overflow: hidden;
  padding: 25px 0 20px;
}

.csr-track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  position: relative;
}

.csr-circle {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              order 0s linear;
  opacity: 0.3;
  transform: scale(1);
  filter: blur(4px);
  margin: 0 -12px;
  cursor: pointer;
  will-change: transform, opacity, filter, width, height;
  border: 1px solid #ccc;
}

.csr-circle.active {
  width: 200px;
  height: 200px;
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 5;
  transition: width 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              order 0s linear;
}

.csr-circle.near {
  width: 150px;
  height: 150px;
  opacity: 0.5;
  transform: scale(1);
  filter: blur(2px);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              order 0s linear;
}

.csr-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csr-label {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-top: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.csr-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px;
}

.csr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.csr-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-dark);
}

/* ===== STAKEHOLDER ===== */
.stakeholder-section {
  padding: 60px 0 80px;
  text-align: center;
}

.stakeholder-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.stakeholder-card {
  background: var(--color-bg);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
}

.stakeholder-card-img {
  width: 100%;
  height: 160px;
  background: #bbb;
  border-radius: 12px 12px 0 0;
}

.stakeholder-card p {
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.6;
  padding: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .welfare-cards {
    grid-template-columns: 1fr;
  }

  .stakeholder-cards {
    grid-template-columns: 1fr;
  }

  .diversity-section {
    padding: 40px 20px;
  }
}

@media (max-width: 450px) {
  .diversity-boxes {
    grid-template-columns: 1fr;
  }

  .diversity-intro {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }

  .diversity-list li {
    font-size: 1.6rem;
  }
}