body#exporthelp {
  overflow-y: auto !important;
  overflow-x: hidden;
  color: #f4fbf6;
  background:
    radial-gradient(circle at 85% 18%, rgba(56,133,89,0.28), transparent 31rem),
    radial-gradient(circle at 10% 100%, rgba(26,102,76,0.32), transparent 36rem),
    linear-gradient(145deg, #021411 0%, #031c17 44%, #03110f 100%);
}

#about-page {
  background: transparent;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.services-hero {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0 4.5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2,19,16,0.98), rgba(2,26,21,0.78), rgba(2,22,18,0.42)),
    url("/static/project_thumbnails/indufor_background.png") center / cover no-repeat;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(3,28,23,0.92));
  pointer-events: none;
}

.services-hero-content {
  position: relative;
  z-index: 2;
}

.services-label {
  margin-bottom: 1rem;
  color: #78d98b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.services-title {
  max-width: 860px;
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.services-subtitle {
  max-width: 720px;
  margin: 0;
  color: rgba(244,251,246,0.76);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.export-section {
  padding: 2rem 0;
}

.export-section:first-of-type {
  padding-top: 4rem;
}

.export-section:last-of-type {
  padding-bottom: 5rem;
}

.export-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(151,219,174,0.22);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(4,54,44,0.72), rgba(3,26,22,0.94));
  box-shadow: 0 24px 70px rgba(0,0,0,0.36);
  backdrop-filter: blur(18px);
}

.export-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(120,217,139,0.09), transparent 32%);
  pointer-events: none;
}

.export-card-header,
.export-card p {
  position: relative;
  z-index: 2;
}

.export-card-header {
  align-self: start;
}

.export-card h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.export-card p {
  margin: 0;
  color: rgba(244,251,246,0.76);
  line-height: 1.75;
}

.export-card strong {
  color: #fff;
}

.export-tag {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.25rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(120,217,139,0.15);
  color: #78d98b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.help-shot {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  display: block;
  padding: 0.75rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  cursor: zoom-in;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.help-shot:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.fade-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.help-image-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0,0,0,0.82);
  cursor: zoom-out;
}

.help-image-modal.hidden {
  display: none;
}

.help-image-modal img {
  max-width: 96vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 70px rgba(0,0,0,0.55);
}

.help-image-close {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 5001;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.help-image-close:hover {
  background: rgba(255,255,255,0.22);
}

body.help-modal-open {
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .export-card {
    grid-template-columns: 1fr;
  }

  .help-shot {
    max-height: none;
  }
}