/* ============================================================
   SECTORS.CSS — Sectors Strip (6 columns)
   ============================================================ */

.sectors {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.sector-item {
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  transition: background var(--t-base);
}

.sector-item:last-child {
  border-right: none;
}

.sector-item:hover {
  background: var(--blue-tint);
}

.sector-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}

.sector-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sector-name {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sector-desc {
  font-size: var(--text-xs);
  color: var(--text-soft);
  line-height: 1.55;
}