/* IMPAK product page — extends GFP project layout (project-frim.css) */

.impact-page .g-hero {
  --section-bg: url("assets/web/drone/drone-05.jpg");
}

.impact-page .g-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  align-items: center;
}

.impact-page .g-hero-title {
  max-width: none;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.08;
}

.impact-page .g-hero-copy {
  min-width: 0;
}

.impact-page .g-hero-lede {
  margin: 0;
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--g-muted);
}

.impact-page .g-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.ix-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(135, 237, 123, 0.14);
  border: 1px solid rgba(135, 237, 123, 0.35);
  color: var(--g-lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ix-hero-media {
  min-width: 0;
  width: 100%;
  max-width: min(100%, 600px);
  justify-self: end;
  border-radius: var(--g-radius);
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.38);
  aspect-ratio: 1200 / 802;
  background: rgba(255, 255, 255, 0.04);
}

.ix-hero-media picture,
.ix-step-media picture {
  display: block;
}

.ix-hero-media img,
.ix-step-media img {
  display: block;
  width: 100%;
  height: auto;
}

.impact-page .g-btn--ghost {
  background: transparent;
  color: var(--g-text);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.impact-page .g-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--g-text);
}

/* Why communication matters */
.ix-why {
  padding: 72px 0;
  background: var(--g-bg);
}

.ix-why .g-headline.s-center {
  text-align: center;
}

.ix-why-intro {
  max-width: 58ch;
  margin: 14px auto 36px;
  text-align: center;
  color: var(--g-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.ix-reasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ix-reason {
  padding: 22px 20px;
}

.ix-reason h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--g-text);
}

.ix-reason p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--g-muted);
}

/* Why choose + platform steps */
.ix-benefits {
  --section-bg: url("assets/web/field/field-08.jpg");
  padding: 72px 0;
}

.ix-benefits .g-headline {
  margin-bottom: 28px;
}

.ix-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ix-benefit {
  padding: 24px;
}

.ix-benefit h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--g-text);
}

.ix-benefit p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.58;
  color: var(--g-muted);
}

.ix-steps {
  padding: 24px 0 72px;
  background: var(--g-bg);
}

.ix-steps .g-headline {
  margin-bottom: 12px;
}

.ix-steps-lede {
  max-width: 62ch;
  margin: 0 0 40px;
  color: var(--g-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.ix-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-bottom: 56px;
}

.ix-step:last-child {
  margin-bottom: 0;
}

.ix-step--reverse .ix-step-copy {
  order: 2;
}

.ix-step--reverse .ix-step-media {
  order: 1;
}

.ix-step-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g-lime);
}

.ix-step-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--g-text);
}

.ix-step-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--g-muted);
}

.ix-step-media {
  border-radius: var(--g-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  min-width: 0;
}

@media (max-width: 920px) {
  .impact-page .g-hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .impact-page .g-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .ix-hero-media {
    justify-self: start;
    max-width: 100%;
  }

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

  .ix-benefit-grid {
    grid-template-columns: 1fr;
  }

  .ix-step,
  .ix-step--reverse .ix-step-copy,
  .ix-step--reverse .ix-step-media {
    grid-template-columns: 1fr;
    order: unset;
  }
}

@media (max-width: 560px) {
  .impact-page .g-hero-copy {
    padding-left: 0;
  }

  .impact-page .g-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .impact-page .g-hero-actions .g-btn {
    justify-content: center;
    text-align: center;
  }

  .ix-reasons {
    grid-template-columns: 1fr;
  }

  .ix-step {
    gap: 20px;
    margin-bottom: 40px;
  }
}
