/* ============================================
   StoLift Korea - 회사소개 페이지 전용 스타일
   ============================================ */

/* Hero */
.about-hero {
  background: linear-gradient(135deg, var(--black) 55%, #1a1a0a 100%);
  padding: 120px 0 80px;
  border-bottom: none;
  overflow: hidden;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 64px;
  align-items: center;
}

.about-hero-content .section-tag {
  color: var(--yellow);
  background: rgba(245,200,66,0.15);
  border: 1px solid rgba(245,200,66,0.4);
}

.about-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white);
  margin: 14px 0;
}

.about-hero-content h1 em {
  color: var(--yellow);
  font-style: normal;
}

.about-hero-content .page-hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
}

.about-hero-badge {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.about-hero-badge img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  padding: 10px;
  border: 2px solid rgba(245,200,66,0.25);
  transition: all 0.3s ease;
}

.about-hero-badge img:hover {
  background: rgba(245,200,66,0.12);
  transform: translateY(-6px);
}

/* Intro */
.about-intro-section { background: var(--white); }

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 64px;
  align-items: start;
}

.about-intro-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-intro-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-quote {
  background: var(--yellow);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
}

.about-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(0,0,0,0.15);
  position: absolute;
  top: 12px;
  left: 24px;
}

.about-quote p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.about-quote footer {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.04em;
}

/* Business Area */
.about-business-section { background: var(--cream); }

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.biz-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.biz-card:hover {
  border-color: var(--yellow);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(245,200,66,0.18);
}

.biz-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.biz-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.biz-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* HQ Section */
.about-hq-section { background: var(--white); }

.about-hq-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 64px;
  align-items: center;
}

.hq-info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.hq-info-card:hover {
  border-color: var(--yellow);
  background: var(--yellow-light);
}

.hq-info-label {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
}

.hq-info-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-intro-grid,
  .about-hq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-hero-badge {
    justify-content: flex-start;
  }

  .about-hero-badge img {
    width: 72px;
    height: 72px;
  }

  .biz-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .biz-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-badge img {
    width: 60px;
    height: 60px;
  }
}
