.hero-lighting {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-lighting__image-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-lighting__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-lighting__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44, 53, 49, 0.85) 0%, rgba(44, 53, 49, 0.4) 50%, rgba(44, 53, 49, 0.2) 100%);
}

.hero-lighting__content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.hero-lighting__text {
  color: white;
}

.hero-lighting__badge {
  margin-bottom: var(--space-6);
  display: inline-flex;
}

.hero-lighting__title {
  font-size: var(--text-5xl);
  color: white;
  margin-bottom: var(--space-6);
  line-height: var(--leading-tight);
}

.hero-lighting__description {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.hero-lighting__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-lighting__actions .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-lighting__actions .btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.section-header {
  margin-bottom: var(--space-16);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
}

.lighting-grid {
  margin-top: var(--space-8);
}

.lighting-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: none;
  background-color: var(--color-surface);
}

.lighting-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.lighting-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.lighting-card:hover .lighting-card__image {
  transform: scale(1.05);
}

.lighting-card__content {
  padding: var(--space-8);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.lighting-card__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.lighting-card__text {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

.case-study {
  align-items: center;
}

.case-study__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.case-study__image {
  width: 100%;
  height: auto;
  display: block;
}

.case-study__badge {
  margin-bottom: var(--space-4);
}

.case-study__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.case-study__text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.case-study__list {
  list-style: none;
  margin: var(--space-6) 0;
  padding: 0;
}

.case-study__list li {
  position: relative;
  padding-left: var(--space-8);
  margin-bottom: var(--space-3);
  color: var(--color-text);
  font-weight: 500;
}

.case-study__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235B7C58' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.process__content {
  order: 2;
}

.process__image-wrapper {
  order: 1;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.process__image {
  width: 100%;
  height: auto;
  display: block;
}

.process__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.process__text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.process-step {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.process-step__number {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  min-width: 48px;
  text-align: center;
  padding-top: var(--space-2);
}

.process-step__content {
  flex-grow: 1;
}

.process-step__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.process-step__text {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.section-cta {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

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

.cta-box__text {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.cta-box__actions .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-box__actions .btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (min-width: 1024px) {
  .process__content {
    order: 1;
  }
  
  .process__image-wrapper {
    order: 2;
  }
  
  .hero-lighting__title {
    font-size: var(--text-6xl);
  }
}

@media (max-width: 768px) {
  .hero-lighting__title {
    font-size: var(--text-4xl);
  }
  
  .hero-lighting__description {
    font-size: var(--text-lg);
  }
  
  .case-study__title,
  .process__title,
  .cta-box__title {
    font-size: var(--text-3xl);
  }
  
  .lighting-card__content {
    padding: var(--space-6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lighting-card__image {
    transition: none;
  }
  
  .lighting-card:hover .lighting-card__image {
    transform: none;
  }
}