.sectors-page {
  background: #f7f9fc;
}

.sectors-hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at 75% 25%, rgba(247, 167, 49, 0.15), transparent 38%),
    linear-gradient(135deg, #07172c 0%, #0f4da2 100%);
  color: #ffffff;
}

.sectors-hero h1,
.sectors-hero .lede {
  color: #ffffff;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.sector-tile,
.sector-panel {
  border: 1px solid rgba(15, 77, 162, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(7, 23, 44, 0.08);
}

.sector-tile {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  color: #07172c;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sector-tile:hover,
.sector-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(15, 77, 162, 0.35);
  box-shadow: 0 24px 55px rgba(7, 23, 44, 0.13);
  color: #07172c;
}

.sector-tile h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.sector-tile p {
  margin: 0;
  color: #4a5468;
}

.sector-tile__cta {
  margin-top: 1.25rem;
  color: #0f4da2;
  font-weight: 700;
}

.sector-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

.sector-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.sector-panel + .sector-panel {
  margin-top: 1.25rem;
}

.sector-placeholder {
  border-style: dashed;
}

.sector-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #4a5468;
}

.sector-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.sector-nav-list a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: #07172c;
  font-weight: 700;
  text-decoration: none;
}

.sector-nav-list a:hover,
.sector-nav-list a:focus-visible,
.sector-nav-list a[aria-current="page"] {
  background: rgba(15, 77, 162, 0.1);
  color: #0f4da2;
}

.solution-card {
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .sector-detail-layout {
    grid-template-columns: 1fr;
  }
}
