.team-hero {
  background: linear-gradient(135deg, var(--color-asphalt) 0%, var(--color-steel) 100%);
  color: white;
  padding: var(--space-24) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.team-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin-bottom: var(--space-8);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.breadcrumb a {
  color: var(--color-concrete);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: var(--space-2);
  color: var(--color-concrete);
}

.breadcrumb [aria-current="page"] {
  color: white;
  font-weight: var(--font-weight-medium);
}

.team-hero h1 {
  color: white;
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.team-hero .lead {
  font-size: var(--text-xl);
  color: var(--color-concrete);
  line-height: var(--line-height-relaxed);
}

.team-section {
  padding: var(--space-24) 0;
  background-color: var(--color-bg);
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.team-grid-reversed {
  direction: rtl;
}

.team-grid-reversed > * {
  direction: ltr;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.section-label.light {
  color: var(--color-safety-orange);
}

.team-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  color: var(--color-asphalt);
}

.team-content p {
  font-size: var(--text-lg);
  color: var(--color-steel);
  margin-bottom: var(--space-6);
  line-height: var(--line-height-relaxed);
}

.expertise-list,
.safety-list {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.expertise-list li,
.safety-list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--color-steel);
  font-weight: var(--font-weight-medium);
}

.expertise-list li::before,
.safety-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 1px;
  transform: rotate(45deg);
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  background-color: var(--color-surface);
  border: 1px solid var(--color-concrete);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-steel);
  font-family: var(--font-mono);
}

.team-image-wrapper {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.image-frame:hover img {
  transform: scale(1.02);
}

.image-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--color-accent);
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.specialty-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.specialty-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.specialty-card:hover::before {
  transform: scaleX(1);
}

.specialty-icon {
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}

.specialty-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--color-asphalt);
}

.specialty-card p {
  color: var(--color-steel);
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
}

.culture-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.culture-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.culture-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.culture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.4) 100%);
}

.culture-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-24) 0;
}

.culture-content h2 {
  color: white;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  max-width: 600px;
}

.culture-content p {
  color: var(--color-concrete);
  font-size: var(--text-lg);
  max-width: 600px;
  margin-bottom: var(--space-10);
}

.values-grid {
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-8);
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.value-item strong {
  color: white;
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
}

.value-item span {
  color: var(--color-concrete);
  font-size: var(--text-sm);
}

.careers-cta {
  background-color: var(--color-asphalt);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

.careers-cta::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.cta-content h2 {
  color: white;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
}

.cta-content p {
  color: var(--color-concrete);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

.career-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.benefit {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: white;
  font-weight: var(--font-weight-medium);
}

.benefit svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.btn-large {
  padding: var(--space-5) var(--space-8);
  font-size: var(--text-base);
  width: 100%;
  justify-content: center;
}

.btn-outline-light {
  background-color: transparent;
  border-color: var(--color-concrete);
  color: white;
}

.btn-outline-light:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (max-width: 1024px) {
  .team-grid {
    gap: var(--space-10);
  }
  
  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

@media (max-width: 768px) {
  .team-hero {
    padding: var(--space-16) 0 var(--space-12);
  }
  
  .team-hero h1 {
    font-size: var(--text-4xl);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .team-grid-reversed {
    direction: ltr;
  }
  
  .team-grid-reversed > * {
    direction: ltr;
  }
  
  .team-image-wrapper {
    order: -1;
  }
  
  .specialty-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .cta-wrapper {
    text-align: center;
  }
  
  .career-benefits {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: var(--space-16) 0;
  }
  
  .team-content h2 {
    font-size: var(--text-2xl);
  }
  
  .culture-content h2,
  .cta-content h2 {
    font-size: var(--text-3xl);
  }
}