.sectors-section {
  padding: 8em 2rem 8rem;
  background-color: #f3f4f5;
  font-family: 'Space Grotesk', sans-serif;
}

.sectors-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.sectors-left,
.sectors-right {
  opacity: 0;
  transform: translateY(80px);
}

.sectors-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sectors-highlight {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #0d0d0d;
  padding: clamp(2rem, 4vw, 2.75rem);
  z-index: 0;
}

.sectors-highlight::before {
  content: '';
  position: absolute;
  top: -3rem;
  left: -1rem;
  width: 220px;
  height: 220px;
  background-color: #e85107;
  z-index: -1;
  box-shadow: 0 24px 55px rgba(18, 26, 31, 0.12);
}

.sectors-highlight-label,
.sectors-highlight-year {
  font-family: 'Space Grotesk', sans-serif !important;
  position: relative;
  z-index: 1;
}

.sectors-highlight-label {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  color: #fff;
  max-width: 150px;
  line-height: 1.3;
}

.sectors-highlight-year {
  font-size: 7rem;
  line-height: 0.9;
  font-weight: 700;
  color: #0d0d0d;
}

.sectors-highlight-sublabel {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  display: block;
  font-weight: 600;
  color: #0d0d0d;
  position: relative;
  z-index: 1;
}

.sectors-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sectors-stats li {
  display: block;
}

.stat-text {
  margin: 0;
  padding: 0;
  color: #3a3f43;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  position: relative;
  padding-left: 1.5rem;
  box-sizing: border-box;
  white-space: nowrap;
}

.stat-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background-color: #e85107;
  opacity: 0.8;
}

.sectors-right {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.sectors-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #0d0d0d;
  margin: 0 0 2.5rem;
}

.sector-item + .sector-item {
  border-top: 1px solid rgba(18, 26, 31, 0.08);
}

.sector-item {
  border-bottom: 2px solid rgba(18, 26, 31, 0.08);
  transition: border-color 0.3s ease;
}

.sector-item.active {
  border-bottom-color: #e85107;
}

.sector-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.sector-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sector-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1em;
  color: #0d0d0d;
}

.sector-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.sector-item.active .sector-arrow svg {
  transform: rotate(180deg);
  color: #e85107;
}

.sector-item.active .sector-name {
  color: #0d0d0d;
}

.sector-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease;
  opacity: 0;
}

.sector-item.active .sector-content {
  opacity: 1;
  padding: 1.5rem 0 2rem;
}

.sector-content-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.sector-content p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  color: #3a3f43;
  text-align: left;
}

.sector-image {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sector-image img {
  width: clamp(220px, 30vw, 260px);
  height: 180px;
  object-fit: cover;
}

.sectors-section.is-visible .sectors-left {
  animation: sectorsRise 0.9s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0.1s;
}

.sectors-section.is-visible .sectors-right {
  animation: sectorsRise 0.9s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0.25s;
}

@media (max-width: 1100px) {
  .sectors-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sectors-stats {
    gap: 1.75rem;
  }

  .stat-text {
    font-size: 17px;
  }

  .sectors-right {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .sectors-stats {
    gap: 1.5rem;
  }

  .stat-text {
    font-size: 16px;
    padding-left: 0;
    white-space: nowrap;
  }

  .stat-text::before {
    display: none;
  }

  .sectors-right {
    padding: 0;
  }

  .sector-toggle {
    padding: 1.25rem 0;
  }

  .sector-content-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .sector-image {
    justify-content: flex-start;
    width: 100%;
  }

  .sector-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 540px) {
  .sectors-stats {
    gap: 1.25rem;
  }

  .stat-text {
    font-size: 14px;
    padding-left: 0;
    white-space: nowrap;
  }

  .stat-text::before {
    display: none;
  }

  .sectors-highlight {
    padding: 2.5rem 2rem;
  }

  .sectors-highlight-year {
    font-size: 5rem;
  }

  .sectors-right {
    padding: 0;
  }

  .sector-name {
    font-size: 1.125rem;
  }

  .sector-content p {
    font-size: 0.95rem;
  }

  .sector-image {
    width: 100%;
  }

  .sector-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@keyframes sectorsRise {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

