/* ============================================================
   COMPANY PAGE — company.css
   ============================================================ */

.company-hero { min-height: 60vh; display: flex; flex-direction: column; justify-content: flex-end; }

/* WHO WE ARE */
.who-we-are {
  background: var(--blue);
  padding: 80px 48px;
}
.who-we-are-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.who-we-are-statement {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700; color: white;
  line-height: 1.3; margin-top: 20px;
}
.who-symbol {
  width: 48px; height: 48px; margin-top: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}
.who-we-are-text {
  font-size: 15px; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 16px;
}

/* DIFFERENT SECTION */
.different-section { background: white; }
.different-title { margin-bottom: 60px; }
.different-list {
  display: flex; flex-direction: column; gap: 0;
}
.different-item {
  display: flex; align-items: flex-start; gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-light);
}
.different-item:first-child { border-top: 1px solid var(--gray-light); }
.different-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--blue);
  flex-shrink: 0;
}
.different-item-title {
  font-size: 18px; font-weight: 700; color: var(--blue);
  margin-bottom: 6px;
}
.different-item-desc {
  font-size: 14px; color: var(--gray); line-height: 1.5;
}

/* MINDSET */
.mindset-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.mindset-left {
  background: var(--gray-bg);
  display: flex; align-items: flex-end;
  padding: 80px 48px;
}
.mindset-left-inner { max-width: 420px; }
.mindset-title {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800; color: var(--blue);
  line-height: 1.0; margin-bottom: 32px;
}
.mindset-text {
  font-size: 16px; color: var(--black); line-height: 1.7;
  font-weight: 600;
}
.mindset-right {
  position: relative; overflow: hidden;
}
.mindset-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%);
}
.mindset-right-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(4,38,160,0.92) 0%, transparent 100%);
  padding: 48px 40px 40px;
}
.mindset-right-text {
  font-size: 16px; color: white; line-height: 1.7; font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .who-we-are { padding: 60px 32px; }
  .who-we-are-inner { grid-template-columns: 1fr; gap: 40px; }
  .mindset-left { padding: 60px 32px; }
}
@media (max-width: 768px) {
  .who-we-are { padding: 48px 20px; }
  .mindset-section { grid-template-columns: 1fr; }
  .mindset-left { padding: 48px 20px; }
  .mindset-right { min-height: 300px; }
}
