.hero-board .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.hero-board .hero-stats p {
  margin: 0;
  padding: 12px 6px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .06);
  text-align: center;
}

.hero-board .hero-stats b,
.hero-board .hero-stats small {
  display: block;
}

.hero-board .hero-stats b {
  font-size: 27px;
}

.hero-board .hero-stats small {
  margin-top: 7px;
  color: #bdd2d7;
  font-size: 10px;
  line-height: 1.35;
}

.business-flow {
  max-width: 1280px;
}

.business-timeline {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.business-timeline article {
  position: relative;
  display: flex;
  grid-template-columns: none;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
  min-height: 410px;
  padding: 22px 19px;
}

.business-timeline article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 35px;
  right: -12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.business-timeline article > i {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
}

.business-timeline article > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.business-timeline h3 {
  min-height: 54px;
  margin-top: 7px;
  font-size: 19px;
  line-height: 1.4;
}

.business-timeline p {
  font-size: 13px;
  line-height: 1.75;
}

.business-timeline b {
  margin-top: auto;
  padding-top: 18px;
}

.business-timeline a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.flow-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 16px;
  padding: 24px 26px;
  border-radius: 19px;
  background: linear-gradient(135deg, #0e2d3e, #1b4f5f);
  color: #fff;
  box-shadow: 0 18px 45px rgba(18, 48, 62, .14);
}

.flow-control > span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(174, 232, 212, .14);
  color: var(--mint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  white-space: nowrap;
}

.flow-control h3 {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.4;
}

.flow-control p {
  margin: 0;
  color: #c9dade;
  font-size: 12px;
  line-height: 1.7;
}

.flow-control > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.result-grid article {
  min-height: 300px;
}

.result-grid .result-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 10px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.closing-actions a {
  margin-top: 0;
}

.closing-actions a.ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

@media (hover: hover) {
  .business-timeline a:hover,
  .result-grid .result-link:hover {
    color: #064f40;
    transform: translateX(3px);
  }

  .flow-control > a:hover {
    background: rgba(255, 255, 255, .15);
  }
}

@media (max-width: 1040px) {
  .business-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-timeline article {
    min-height: 330px;
  }

  .business-timeline article:not(:last-child)::after {
    display: none;
  }

  .business-timeline article:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .business-timeline {
    grid-template-columns: 1fr;
  }

  .business-timeline article,
  .business-timeline article:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .business-timeline h3 {
    min-height: 0;
  }

  .business-timeline b {
    margin-top: 14px;
    padding-top: 0;
  }

  .flow-control {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 21px 19px;
  }

  .flow-control > span {
    justify-self: start;
  }

  .flow-control > a {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-copy > p {
    line-height: 1.85;
  }

  .hero-board .hero-stats {
    gap: 6px;
  }

  .hero-board .hero-stats p {
    padding: 11px 3px;
  }

  .hero-board .hero-stats b {
    font-size: 23px;
  }

  .hero-board .hero-stats small {
    font-size: 9px;
  }

  .business-flow .section-head {
    margin-bottom: 22px;
  }

  .business-timeline {
    gap: 11px;
  }

  .business-timeline article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 19px 17px;
  }

  .business-timeline article > i {
    width: 42px;
    height: 42px;
  }

  .business-timeline article > div {
    display: block;
  }

  .business-timeline h3 {
    margin: 4px 0 8px;
    font-size: 19px;
  }

  .business-timeline b {
    margin-top: 12px;
  }

  .business-timeline a,
  .result-grid .result-link {
    min-height: 44px;
  }

  .result-grid article {
    min-height: 300px;
  }

  .closing-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .closing-actions a {
    width: 100%;
    min-height: 46px;
    padding: 0 10px;
  }

  .closing-actions a:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 350px) {
  .hero-board .hero-stats small {
    font-size: 8px;
  }

  .business-timeline article {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 17px 14px;
  }

  .business-timeline article > i {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .business-timeline a,
  .result-grid .result-link {
    transform: none !important;
  }
}
