/* ===== 회사 소개 페이지 (V54 프로토타입 동일) ===== */
.company-top {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-top: -32px;
  overflow: hidden;
  margin-bottom: 8px;
}
body.mobile .company-top { margin-top: -20px; }
.company-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--company-top-bg, none) center 52% / cover no-repeat;
  z-index: 0;
}
.company-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.40) 0%, rgba(255,255,255,0.60) 50%, rgba(255,255,255,0.78) 100%);
  z-index: 1;
}
.company-top-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.company-hero { text-align: center; padding: 80px 28px 0; }
.company-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 14px;
}
.company-slogan {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  line-height: 1.2;
}
.company-slogan .accent { color: var(--brand); }
.company-hero-sub {
  margin: 56px auto 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-700);
  line-height: 1.8;
  max-width: 720px;
}
@keyframes companyReveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
#page-company.active .company-slogan { animation: companyReveal .6s ease both; }
#page-company.active .company-hero-sub { animation: companyReveal .6s ease .18s both; }
#page-company.active .company-awards { animation: companyReveal .6s ease .36s both; }
@media (prefers-reduced-motion: reduce) {
  #page-company.active .company-slogan,
  #page-company.active .company-hero-sub,
  #page-company.active .company-awards { animation: none; }
}
#page-company .r-block {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
#page-company .r-block.is-visible { opacity: 1; transform: translateY(0); }
#page-company .r-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
#page-company .r-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
#page-company .r-stagger.is-visible > *:nth-child(2) { transition-delay: .12s; }
#page-company .r-stagger.is-visible > *:nth-child(3) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  #page-company .r-block,
  #page-company .r-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.company-hero-sub b { font-weight: 700; color: var(--ink-900); }
.company-section { padding: 80px 0; border-top: 1px solid var(--ink-100); }
.company-section.first { border-top: none; padding-top: 80px; padding-bottom: 80px; }
.company-top + .company-section { border-top: none; }
.company-section-head { text-align: center; margin-bottom: 40px; }
.company-section-title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  line-height: 1.25;
}
.company-section-desc { margin: 4px 0 0; font-size: 17px; color: var(--ink-500); }
.company-reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.company-reason-num {
  font-size: 46px;
  font-weight: 800;
  color: var(--brand-100);
  line-height: 1;
  letter-spacing: -0.01em;
}
.company-reason-title {
  margin-top: 14px;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.company-reason-desc { margin-top: 10px; font-size: 15px; color: var(--ink-500); line-height: 1.65; }
.company-impact-lead {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-700);
}
.company-impact-lead b { font-weight: 700; color: var(--ink-900); }
.company-activity {
  border: 1px solid var(--brand-100);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  background: var(--bg);
  text-align: center;
}
.company-activity-desc {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}
.company-activity-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 26px;
}
.company-activity-stat .v {
  font-size: 30px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.company-activity-stat .v .u { font-size: 16px; font-weight: 600; margin-left: 2px; }
.company-activity-stat .l { margin-top: 4px; font-size: 14px; color: var(--ink-500); }
.company-activity-cta {
  padding: 13px 28px;
  border: 1px solid var(--brand);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.company-activity-cta:hover { background: var(--brand-50); }
a.company-activity-cta { display: inline-block; text-decoration: none; }
.company-awards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.company-award {
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-md);
  padding: 22px 16px;
  text-align: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.company-award .material-symbols-outlined { font-size: 32px; color: var(--brand); }
.company-award-t { margin-top: 10px; font-size: 15px; font-weight: 600; color: var(--ink-900); }
.company-award-s { margin-top: 3px; font-size: 13px; color: var(--ink-500); }
.company-history { max-width: 720px; margin: 0 auto; }
.company-history-row {
  display: flex;
  gap: 20px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--ink-100);
}
.company-history-row:last-child { border-bottom: none; }
.company-history-year {
  flex: none;
  width: 88px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand);
}
.company-history-text { font-size: 15px; color: var(--ink-700); line-height: 1.55; }
body.mobile .company-hero { padding-top: 36px; }
body.mobile .company-slogan { font-size: 30px; }
body.mobile .company-hero-sub { font-size: 16px; }
body.mobile .company-section-title { font-size: 25px; }
body.mobile .company-section { padding: 48px 0; }
body.mobile .company-section.first { padding-top: 48px; padding-bottom: 48px; }
body.mobile .company-reasons { grid-template-columns: 1fr; }
body.mobile .company-awards { grid-template-columns: 1fr 1fr; }
body.mobile .company-activity { padding: 24px 20px; }
body.mobile .company-activity-stats { grid-template-columns: 1fr; gap: 14px; }
body.mobile .company-history-year { width: 64px; font-size: 15px; }
