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

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
}

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

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

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

.hero {
  background-color: var(--color-bg-alt);
  padding: var(--space-9) 0;
  position: relative;
  overflow: hidden;
}

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

.hero__title {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-5);
  color: var(--color-text);
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  max-width: 55ch;
}

.hero__cta {
  font-size: var(--font-size-base);
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.section {
  padding: var(--space-9) 0;
}

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

.section--highlight {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section__title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-5);
  text-align: center;
}

.section__title--center {
  text-align: center;
}

.section__text {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.text-block {
  max-width: 800px;
  margin: 0 auto;
}

.text-block--center {
  text-align: center;
}

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

.feature-section__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-section__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.feature-section__image:hover img {
  transform: scale(1.02);
}

.feature-section__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
}

.feature-section__text {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-5);
}

.showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-8);
  align-items: center;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.showcase--large {
  grid-template-columns: 1fr 1fr;
}

.showcase__image-wrapper {
  overflow: hidden;
  height: 100%;
}

.showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.showcase__content {
  padding: var(--space-7);
}

.showcase__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
}

.showcase__text {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-5);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-7);
}

.process-item {
  text-align: center;
  padding: var(--space-6);
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.process-item:hover {
  box-shadow: var(--shadow-md);
}

.process-item__number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  color: var(--color-primary);
  opacity: 0.4;
  margin-bottom: var(--space-3);
  line-height: 1;
}

.process-item__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.process-item__text {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  margin-bottom: 0;
}

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

.cta-section {
  background-color: var(--color-bg-alt);
  padding: var(--space-9) 0;
}

.cta-section__container {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: var(--space-8);
  align-items: center;
}

.cta-section__image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-section__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.cta-section__title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
}

.cta-section__text {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
}

.cta-section__btn {
  font-size: var(--font-size-base);
}

@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }
  
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .feature-section__container {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .feature-section--reverse .feature-section__content {
    order: -1;
  }
  
  .showcase,
  .showcase--large {
    grid-template-columns: 1fr;
  }
  
  .showcase__content {
    padding: var(--space-6);
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .cta-section__container {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }
  
  .cta-section__image-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: var(--space-7) 0;
  }
  
  .hero__title {
    font-size: var(--font-size-4xl);
  }
  
  .section {
    padding: var(--space-7) 0;
  }
  
  .section__title {
    font-size: var(--font-size-3xl);
  }
  
  .showcase__content {
    padding: var(--space-5);
  }
}