.breadcrumb {
  padding-block: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  margin-left: var(--space-2);
  color: var(--gray-600);
}

.breadcrumb__link {
  color: var(--color-text-secondary);
  transition: color var(--duration-150) var(--ease-in-out);
}

.breadcrumb__link:hover {
  color: var(--color-primary);
}

.hero-tech {
  padding-block: var(--space-16) var(--space-12);
  background: linear-gradient(180deg, var(--color-bg-elevated) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--gray-800);
}

.hero-tech__content {
  max-width: 800px;
  text-align: center;
  margin-inline: auto;
}

.hero-tech__title {
  font-size: var(--text-5xl);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-6);
}

.hero-tech__subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.tech-sections {
  display: flex;
  flex-direction: column;
}

.tech-section {
  padding-block: var(--space-20);
  border-bottom: 1px solid var(--gray-800);
}

.tech-section:nth-child(even) {
  background-color: var(--color-bg-elevated);
}

.tech-section--highlight {
  background: linear-gradient(135deg, var(--color-bg-elevated) 0%, var(--color-bg-surface) 100%);
  border-bottom: none;
}

.tech-section__grid {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .tech-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.tech-section__content--centered {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.tech-section__title {
  font-size: var(--text-3xl);
  font-weight: 600;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.tech-section__text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.tech-section__media {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.tech-section__image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform var(--duration-500) var(--ease-out);
}

.tech-section__media:hover .tech-section__image {
  transform: scale(1.03);
}

.tech-section__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.tech-section__cta {
  margin-top: var(--space-8);
}

@media (max-width: 1023px) {
  .hero-tech__title {
    font-size: var(--text-4xl);
  }
  
  .tech-section {
    padding-block: var(--space-16);
  }
  
  .tech-section--image-left .tech-section__media {
    order: 2;
  }
  
  .tech-section--image-left .tech-section__content {
    order: 1;
  }
}

@media (max-width: 640px) {
  .hero-tech__title {
    font-size: var(--text-3xl);
  }
  
  .hero-tech__subtitle {
    font-size: var(--text-lg);
  }
  
  .tech-section__title {
    font-size: var(--text-2xl);
  }
  
  .tech-section__text {
    font-size: var(--text-base);
  }
}