.production {
  padding: 70px 0;
  background: var(--white);
  color: var(--text);
}

.production-header {
  max-width: 70ch;
  margin-bottom: 22px;
}

.production-header h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
}

.production-header p {
  margin: 12px 0 0;
  line-height: 1.6;
  color: #334155;
}

.production-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 40px;
}

.production-stats .stat {
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.production-stats .stat h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.production-stats .stat p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.production-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.production-steps .step {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.production-steps .step:hover,
.production-steps .step.active {
  border-color: rgba(247, 197, 30, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.production-steps .step span {
  color: var(--btn-text);
  font-weight: 800;
}

.production-steps .step h4 {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.production-steps .step p {
  margin: 10px 0 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.4;
}

.production-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.production-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1024px) {
  .production-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .production-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .production-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .production {
    padding: 52px 0;
  }

  .production-header h2 {
    font-size: 26px;
  }

  .production-stats {
    grid-template-columns: 1fr;
  }

  .production-steps {
    grid-template-columns: 1fr;
  }

  .production-gallery {
    grid-template-columns: 1fr;
  }

  .production-gallery img {
    height: 200px;
  }
}
