/* Company page */

.he-philosophy {
  padding: 4rem 0 6rem;
  background: var(--he-white);
  border-bottom: 1px solid var(--he-slate-300);
}

.he-philosophy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .he-philosophy__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }

.he-philosophy__card {
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: var(--he-white);
  border: 1px solid rgba(203,213,225,0.85);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) { .he-philosophy__card { padding: 2rem; } }

.he-philosophy__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.he-philosophy__card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--he-primary);
  color: var(--he-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .he-philosophy__card-icon { width: 4rem; height: 4rem; }
}

.he-philosophy__card-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--he-slate-400);
}

@media (min-width: 640px) { .he-philosophy__card-label { font-size: 0.8125rem; } }

.he-philosophy__card-subtitle {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  font-weight: 900;
  color: var(--he-primary);
  line-height: 1.35;
}

@media (min-width: 640px) { .he-philosophy__card-subtitle { font-size: 1.125rem; } }
@media (min-width: 1024px) { .he-philosophy__card-subtitle { font-size: 1.25rem; } }

.he-philosophy__card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  color: var(--he-slate-600);
}

/* Company overview */
.he-overview {
  padding: 4rem 0 6rem;
  background: var(--he-slate-200);
  border-bottom: 1px solid var(--he-slate-300);
}

.he-overview__table {
  background: var(--he-white);
  border: 1px solid var(--he-slate-300);
  border-radius: 1.5rem;
  box-shadow: var(--he-shadow-sm);
  overflow: hidden;
}

.he-overview__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--he-slate-300);
}

.he-overview__row:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .he-overview__row {
    flex-direction: row;
    gap: 2rem;
    padding: 2.5rem;
    align-items: flex-start;
  }
}

.he-overview__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--he-slate-900);
  flex-shrink: 0;
}

@media (min-width: 768px) { .he-overview__label { width: 25%; font-size: 1rem; } }

.he-overview__label::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background: var(--he-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.he-overview__value {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.75;
  color: var(--he-slate-600);
  white-space: pre-wrap;
}

@media (min-width: 768px) { .he-overview__value { width: 75%; font-size: 1rem; } }
