/* ============================================================
   Seg component: "hyper-segmentation" trigger grid.
   ============================================================ */

.seg {
  background: var(--blue);
  color: var(--white);
  padding: 10rem var(--pad-x);
  position: relative;
  overflow: hidden;
}
.seg__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  z-index: 1;
}
.seg__kicker {
  color: var(--green);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.seg__h {
  font-size: var(--fz-h1);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--green);
  max-width: 22ch;
  margin-bottom: 2rem;
}
.seg__h em {
  font-style: normal;
  color: var(--white);
}
.seg__sub {
  font-size: var(--fz-lead);
  line-height: 1.4;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4.375rem;
}
.seg__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 980px) {
  .seg__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .seg__grid {
    grid-template-columns: 1fr;
  }
}
.trigger {
  background: var(--blue);
  padding: 2.5rem 1.625rem;
  min-height: 16.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s var(--ease);
  position: relative;
}
.trigger:hover {
  background: var(--blue-hover);
}
.trigger__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(221, 247, 183, 0.18);
  color: var(--green);
  margin-bottom: auto;
}
.trigger__name {
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--green);
  margin-top: 1.875rem;
}
.trigger__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.625rem;
}
