/* Company page layout */
.page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
}

/* Company header */
.company-header {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px 32px;
  grid-column: 1 / -1;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.company-icon {
  width: 72px;
  height: 72px;
  background: #eef2ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #4361ee;
  flex-shrink: 0;
}
.company-header h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.company-header h1 span {
  color: #6b7280;
  font-weight: 400;
  font-size: 18px;
  margin-left: 6px;
}
.company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  font-size: 14px;
  color: #6b7280;
}
.company-meta .tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.company-meta a { color: #4361ee; text-decoration: none; }
.company-meta a:hover { text-decoration: underline; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #059669;
  font-weight: 600;
  font-size: 14px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-top: 12px;
}
.verified-badge svg { flex-shrink: 0; }

/* Main content */
.main { min-width: 0; }
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 20px;
}
.card h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.leader {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #f0f0f5;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}
.leader-icon {
  width: 40px;
  height: 40px;
  background: #f0f0f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #6b7280;
  flex-shrink: 0;
}
.leader-info { min-width: 0; }
.leader-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
.leader-dept {
  font-size: 12px;
  color: #9ca3af;
}
.leader .mobile-dot {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}

/* Departments table */
.dept-table { width: 100%; border-collapse: collapse; }
.dept-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 0 10px;
  border-bottom: 1px solid #f0f0f5;
}
.dept-table th:last-child,
.dept-table td:last-child { text-align: right; }
.dept-table td {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #f8f8fb;
}
.dept-table .bar-cell { width: 40%; }
.dept-bar {
  height: 6px;
  background: #eef2ff;
  border-radius: 3px;
  overflow: hidden;
}
.dept-bar-fill {
  height: 100%;
  background: #4361ee;
  border-radius: 3px;
}

/* FAQ */
.faq-item { border-bottom: 1px solid #f0f0f5; padding: 14px 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-item:first-child { padding-top: 0; }
.faq-q {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a2e;
}
.faq-a {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* Sidebar */
.sidebar {}
.cta-card {
  background: #1a1a2e;
  border-radius: 10px;
  padding: 28px;
  color: #fff;
  margin-bottom: 20px;
}
.cta-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-card p {
  font-size: 14px;
  color: #a0a4b8;
  margin-bottom: 18px;
  line-height: 1.5;
}
.btn-cta {
  display: block;
  text-align: center;
  background: #4cc9f0;
  color: #1a1a2e;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.btn-cta:hover { background: #3ab8df; }
.sidebar-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.1px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #f8f8fb;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: #9ca3af; }
.info-value { color: #1a1a2e; font-weight: 500; text-align: right; }
.info-value a { color: #4361ee; text-decoration: none; }
.info-value a:hover { text-decoration: underline; }
.similar-list { list-style: none; }
.similar-list li {
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid #f8f8fb;
}
.similar-list li:last-child { border-bottom: none; }
.similar-list a { color: #4361ee; text-decoration: none; }
.similar-list a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .page { grid-template-columns: 1fr; }
  .company-header { flex-direction: column; gap: 16px; }
  .leadership-grid { grid-template-columns: 1fr; }
}
