.production-page {
  min-height: 100vh;
  padding: 8rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(29, 187, 209, 0.12) 0, transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(185, 105, 220, 0.1) 0, transparent 28%),
    var(--background);
}

.production-hero {
  position: relative;
}

.production-hero::before {
  content: '';
  position: absolute;
  inset: -6rem 0 auto 0;
  height: 18rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.production-hero-head {
  margin-bottom: 3rem;
}

.production-title {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.production-subtitle {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  line-height: 1.25;
  font-weight: 600;
  background: linear-gradient(90deg, #1dbbd1 0%, #7aa5e6 45%, #b969dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.production-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.production-hero-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.production-hero-visual img {
  width: min(100%, 380px);
  height: auto;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.35));
}

.production-hero-copy {
  max-width: 44rem;
}

.production-hero-copy p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.75;
}

.production-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 740px);
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: rgba(30, 37, 43, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--foreground);
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.production-download-btn:hover {
  transform: translateY(-2px);
  background: rgba(42, 51, 60, 0.98);
  border-color: rgba(255, 255, 255, 0.12);
}

.production-download-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  line-height: 1;
}

.production-carousel-section,
.production-detail-section {
  padding: 4.5rem 0 0;
}

.production-carousel-section {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
  background: transparent;
}

.production-carousel-section::before,
.production-carousel-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.production-carousel-section::before {
  background:
    radial-gradient(circle at 50% 32%, rgba(77, 225, 193, 0.05), transparent 38%),
    radial-gradient(circle at 50% 55%, rgba(29, 187, 209, 0.03), transparent 46%);
  filter: blur(10px);
}

.production-carousel-section::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 130px 130px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 88%);
  opacity: 0.08;
}

.production-carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.production-carousel-stage {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}

.production-carousel-button {
  z-index: 6;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(19, 25, 31, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.production-carousel-button:hover {
  transform: scale(1.04);
  background: rgba(29, 187, 209, 0.16);
  border-color: rgba(77, 225, 193, 0.34);
  box-shadow: 0 0 24px rgba(77, 225, 193, 0.14), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.production-carousel-button span {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  transform: translateY(-1px);
}

.production-carousel-button-left {
  order: 0;
}

.production-carousel-button-right {
  order: 2;
}

.production-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2.5rem 5px 3.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.production-carousel::-webkit-scrollbar {
  display: none;
}

.production-carousel-card {
  position: relative;
  flex: 0 0 400px;
  min-height: 380px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  scroll-snap-align: center;
  opacity: 0.4;
  transform: scale(0.92);
  filter: blur(1px);
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
}

.production-carousel-card:hover {
  transform: translateY(-8px) scale(0.93);
  border-color: rgba(77, 225, 193, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.production-carousel-card.active {
  opacity: 1;
  transform: scale(1.05) translateY(-10px);
  filter: blur(0);
  border-color: rgba(77, 225, 193, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(77, 225, 193, 0.2);
  z-index: 5;
}

.production-carousel-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  transform: scale(1.05);
}

.production-carousel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(77, 225, 193, 0.16), transparent 26%),
    radial-gradient(circle at 72% 20%, rgba(29, 187, 209, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(15, 20, 26, 0.12) 0%, rgba(15, 20, 26, 0.78) 100%);
  z-index: 0;
}

.production-carousel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.06) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 30%, rgba(255, 255, 255, 0.05) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 74%, rgba(29, 187, 209, 0.08) 0 1px, transparent 2px);
  background-size: 160px 160px;
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}

.production-carousel-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 2.5rem;
  background:
    radial-gradient(circle at 22% 8%, rgba(77, 225, 193, 0.08), transparent 34%),
    radial-gradient(circle at 55% 42%, rgba(29, 187, 209, 0.04), transparent 48%);
}

.production-carousel-card-inner h4 {
  margin: 0 0 1rem;
  max-width: 15ch;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.production-carousel-card-inner p {
  margin: 0;
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.production-detail-heading {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.production-heading-fieldpulse {
  background: linear-gradient(90deg, #b969dc 0%, #4de1c1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.production-heading-assetpulse {
  background: linear-gradient(90deg, #ec4899 0%, #9333ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.production-heading-forecasts {
  background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.production-heading-marketpulse {
  background: linear-gradient(90deg, #14b8a6 0%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.production-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 2rem;
  align-items: stretch;
}

.production-detail-grid-reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.production-detail-visual {
  display: flex;
  min-width: 0;
}

.production-detail-visual-forecast {
  align-items: center;
  justify-content: center;
}

.production-detail-visual-marketpulse {
  align-items: center;
  justify-content: center;
}

.production-detail-visual-image {
  align-items: stretch;
}

.production-detail-panel {
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  height: 100%;
}

.production-detail-grid-reverse .production-detail-panel {
  min-height: 100%;
}

.production-detail-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.7rem;
  line-height: 1.2;
}

.production-detail-panel p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.8;
}

.production-detail-list {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.production-detail-list li + li {
  margin-top: 0.45rem;
}

.production-detail-image-shell {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(29, 187, 209, 0.06), rgba(185, 105, 220, 0.06));
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.production-detail-image-shell-assetpulse {
  border: 0;
  background: transparent;
  padding: 0;
  min-height: 0;
  align-items: stretch;
}

.production-detail-image-shell-assetpulse img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.production-detail-image-card {
  height: 100%;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.production-detail-image-shell img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.3));
}

.production-detail-image-direct {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.3));
}

.production-detail-image-forecast {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.3));
}

.production-detail-image-marketpulse {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.3));
}

.production-detail-section-last {
  padding-bottom: 1rem;
}

@media (max-width: 992px) {
  .production-page {
    padding-top: 7rem;
  }

  .production-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .production-hero-visual {
    justify-content: flex-start;
  }

  .production-hero-visual img {
    width: min(100%, 320px);
  }

  .production-carousel-card {
    flex-basis: 400px;
  }

  .production-detail-grid,
  .production-detail-grid-reverse {
    grid-template-columns: 1fr;
  }

  .production-detail-image-card {
    min-height: 320px;
  }

  .production-detail-visual-image {
    min-height: 320px;
  }

  .production-detail-image-shell-assetpulse {
    min-height: 320px;
  }

  .production-detail-visual-forecast {
    min-height: 320px;
  }

  .production-detail-visual-marketpulse {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .production-page {
    padding: 6.5rem 0 3rem;
  }

  .production-hero-head {
    margin-bottom: 2rem;
  }

  .production-hero-copy p {
    font-size: 1rem;
  }

  .production-download-btn {
    width: 100%;
    font-size: 1rem;
  }

  .production-carousel-card {
    flex-basis: 290px;
    min-height: 340px;
  }

  .production-carousel {
    gap: 1rem;
    padding: 2rem 0 3rem;
  }

  .production-carousel-button {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.7rem;
  }

  .production-carousel-card-inner {
    padding: 1.5rem;
  }

  .production-carousel-card-inner h4 {
    max-width: 16ch;
    font-size: 1.5rem;
  }

  .production-carousel-card-inner p {
    max-width: none;
    font-size: 0.98rem;
  }

  .production-detail-panel {
    padding: 1.5rem;
  }

  .production-detail-panel h3 {
    font-size: 1.4rem;
  }

  .production-detail-image-card {
    min-height: 260px;
  }

  .production-detail-visual-image {
    min-height: 260px;
  }

  .production-detail-image-shell-assetpulse {
    min-height: 260px;
  }

  .production-detail-visual-forecast {
    min-height: 260px;
  }

  .production-detail-image-forecast {
    max-width: 100%;
  }

  .production-detail-visual-marketpulse {
    min-height: 260px;
  }

  .production-detail-image-marketpulse {
    max-width: 100%;
  }
}
.production-brochure-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.production-brochure-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.production-brochure-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
}

.production-brochure-dialog {
    position: relative;
    width: min(100%, 350px);
    background: #14161d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 1rem 1rem 0.95rem;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.production-brochure-title {
    margin: 0 0 0.35rem;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.production-brochure-subtitle {
    margin: 0 0 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    line-height: 1.45;
}

.production-brochure-form {
    display: grid;
    gap: 0.5rem;
}

.production-brochure-field input {
    width: 100%;
    height: 1.95rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 2px;
    background: #1d2027;
    color: #ffffff;
    padding: 0 0.45rem;
    font-size: 0.72rem;
    line-height: 1;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.production-brochure-field input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.production-brochure-field input:focus {
    border-color: rgba(29, 187, 209, 0.78);
    background: #21242c;
}

.production-brochure-error {
    margin: 0;
    min-height: 0.9rem;
    color: #fda4af;
    font-size: 0.7rem;
    line-height: 1.25;
}

.production-brochure-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.35rem;
    margin-top: 0.15rem;
}

.production-brochure-cancel,
.production-brochure-submit {
    flex: 0 0 auto;
    min-width: 3.8rem;
    min-height: 1.45rem;
    padding: 0.18rem 0.7rem;
    border: 0;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
}

.production-brochure-cancel {
    background: #4a4e57;
    color: #ffffff;
}

.production-brochure-submit {
    background: linear-gradient(90deg, #1dbbd1 0%, #b969dc 100%);
    color: #ffffff;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 575px) {
    .production-brochure-dialog {
        width: 100%;
        max-width: 350px;
        padding: 1rem;
    }

    .production-brochure-actions {
        flex-direction: column;
        align-items: flex-end;
    }

    .production-brochure-cancel,
    .production-brochure-submit {
        width: auto;
    }
}
