/* ============================================
   SECTOR DETAIL PAGE
   ============================================ */

/* HERO — reuses sectors-hero pattern */
.sector-detail-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 80px;
  color: var(--color-text-on-dark);
  position: relative;
  overflow: hidden;
}

.sector-detail-hero h1 { color: #fff; max-width: 700px; position: relative; z-index: 2; }
.sector-detail-hero .container { position: relative; z-index: 2; }

.sector-detail-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sector-detail-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sector-detail-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14, 34, 54, 0.92) 0%,
    rgba(14, 34, 54, 0.7) 50%,
    rgba(14, 34, 54, 0.4) 100%
  );
  pointer-events: none;
}

.sector-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.sector-detail-hero-sub {
  color: var(--color-text-on-dark-muted);
  max-width: 600px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}


/* CONTENT SECTION */
.sector-detail-content {
  padding: var(--section-padding);
}

.sector-detail-content .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-brand);
  text-decoration: none;
  margin-bottom: 48px;
  transition: opacity 0.3s ease;
}

.sector-detail-content .back-link::before {
  content: '\2190';
}

.sector-detail-content .back-link:hover {
  opacity: 0.7;
}

.sector-detail-body {
  max-width: 720px;
}

.sector-detail-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text-secondary);
}


/* ROLES SECTION */
.sector-roles-section {
  background: var(--color-surface-alt);
  padding: var(--section-padding);
}

.sector-roles-list {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-text-primary);
  line-height: 2.4;
  max-width: 720px;
  margin-top: 24px;
}


/* WHY SECTION */
.sector-why-section {
  padding: var(--section-padding);
}

.sector-why-inner {
  max-width: 720px;
}

.sector-why-inner h2 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.8px;
  color: var(--color-text-primary);
  margin-bottom: 28px;
  line-height: 1.3;
}

.sector-why-inner p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text-secondary);
}


/* ── Responsive ─────────────────────────────── */

@media (max-width: 767px) {
  .sector-detail-hero {
    min-height: 45vh;
    padding: 120px 0 60px;
  }
  .sector-why-inner h2 {
    font-size: 26px;
  }
}
