/* ============================================================
   Company Page Styles (company only)
   ============================================================ */

/* Intro */
.company-section { background: var(--color-white); }

.company-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.company-img-wrap { position: relative; }

.company-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.company-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-primary);
  padding: 20px 24px;
  text-align: center;
}

.company-img-badge .num {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.company-img-badge .label {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
  line-height: 1.4;
}

.company-content h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1.4;
  margin-bottom: 20px;
}
.company-content h2 span { color: var(--color-primary); }

.company-content .en-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.company-content .en-sub::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--color-primary);
}

.company-content p {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Values */
.company-values {
  background: var(--color-dark);
  padding: 80px 0;
}

.cv-header {
  text-align: center;
  margin-bottom: 60px;
}

.cv-header h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--color-white);
}

.cv-header .en-bg {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.06);
  display: block;
  line-height: 1;
  margin-bottom: -30px;
}

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

.cv-card {
  padding: 40px 30px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cv-card:hover::before { transform: scaleX(1); }
.cv-card:hover { border-color: rgba(230,0,18,0.3); }

.cv-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(230,0,18,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.cv-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.cv-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* Company Table */
.company-table-section {
  background: var(--color-light-gray);
  padding: 80px 0;
}

.company-table-header {
  text-align: center;
  margin-bottom: 50px;
}

.company-table-header h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--color-dark);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr { border-bottom: 1px solid rgba(0,0,0,0.07); }
.company-table tr:first-child { border-top: 1px solid rgba(0,0,0,0.07); }

.company-table th {
  width: 200px;
  padding: 22px 24px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  vertical-align: top;
  text-align: left;
}

.company-table td {
  padding: 22px 30px;
  background: var(--color-white);
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.8;
  vertical-align: top;
}

/* Responsive */
@media (max-width: 1024px) {
  .company-layout { grid-template-columns: 1fr; }
  .cv-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .company-table th { width: 120px; padding: 16px; font-size: 13px; }
  .company-table td { padding: 16px; font-size: 13px; }
  .cv-grid { grid-template-columns: 1fr; }
}
.cta-box img {
  display: block;
  margin: 0 auto 10px;
}