.axdx-overview {
  padding: 70px 0 82px;
  background:
    radial-gradient(circle at 75% 12%, rgba(226, 238, 255, 0.44), transparent 28%),
    #fff;
}

.axdx-head {
  max-width: 720px;
}

.axdx-head .eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.axdx-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
}

.axdx-lead {
  margin: 14px 0 0;
  color: #526178;
  font-size: 17px;
  line-height: 1.75;
}

.axdx-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.axdx-step {
  --accent: #8055d9;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 470px;
  overflow: visible;
  flex-direction: column;
  border: 1px solid #e7e2f1;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbf8ff, #f5f0fc);
}

.axdx-step:nth-child(2) {
  --accent: #3788e9;
  border-color: #dce9f8;
  background: linear-gradient(180deg, #f7fbff, #edf6ff);
}

.axdx-step:nth-child(3) {
  --accent: #4f9c62;
  border-color: #dfeadd;
  background: linear-gradient(180deg, #f9fcf7, #eef7eb);
}

.axdx-step:nth-child(4) {
  --accent: #ee8a19;
  border-color: #f1e5d4;
  background: linear-gradient(180deg, #fffaf3, #fff3df);
}

.axdx-step:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 48%;
  right: -31px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #e1e7ef;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(30, 61, 102, 0.08);
  color: #486c9d;
  content: "›";
  font-size: 27px;
  line-height: 1;
}

.axdx-step-copy {
  padding: 26px 24px 18px;
}

.axdx-step-num {
  color: var(--accent);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.axdx-step h2 {
  margin: 11px 0 12px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
}

.axdx-step p {
  margin: 0;
  color: #526178;
  font-size: 15.5px;
  line-height: 1.72;
}

.axdx-step-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: calc(100% - 48px);
  height: 230px;
  margin: auto 24px 20px;
  overflow: hidden;
  border-radius: 12px;
}

.axdx-step-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.axdx-benefits {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  align-items: stretch;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid #e3e8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(35, 77, 130, 0.08);
}

.axdx-benefits-title {
  display: flex;
  align-items: center;
  min-height: 112px;
  padding: 24px 30px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.axdx-benefit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 112px;
  padding: 22px 12px;
  text-align: center;
}

.axdx-benefit::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 1px;
  background: #e1e6ee;
  content: "";
}

.axdx-benefit b {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.axdx-benefit span {
  display: block;
  margin-top: 2px;
  color: #6a778b;
  font-size: 12px;
}

@media (max-width: 900px) {
  .axdx-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .axdx-step:not(:last-child)::after {
    display: none;
  }

  .axdx-benefits {
    grid-template-columns: repeat(4, 1fr);
  }

  .axdx-benefits-title {
    grid-column: 1 / -1;
    justify-content: center;
    padding-bottom: 8px;
  }

  .axdx-benefit:first-of-type::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .axdx-overview {
    padding: 52px 0 62px;
  }

  .axdx-title {
    font-size: 29px;
  }

  .axdx-lead {
    font-size: 15px;
  }

  .axdx-steps {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .axdx-step {
    display: grid;
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    min-height: 168px;
    overflow: hidden;
  }

  .axdx-step-copy {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    padding: 16px 16px 16px 18px;
  }

  .axdx-step-num {
    font-size: 24px;
  }

  .axdx-step h2 {
    margin: 5px 0 7px;
    font-size: 18px;
  }

  .axdx-step p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .axdx-step-image {
    grid-column: 1;
    grid-row: 1;
    align-items: center;
    width: 100%;
    height: 168px;
    margin: 0;
    border-radius: 18px 0 0 18px;
  }

  .axdx-step-image img {
    height: 100%;
    max-height: 168px;
    object-fit: cover;
  }

  .axdx-benefits {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .axdx-benefits-title {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 20px 16px 8px;
    font-size: 19px;
    text-align: center;
  }

  .axdx-benefit {
    min-height: 90px;
    padding: 16px 8px;
  }

  .axdx-benefit:nth-of-type(odd)::before {
    display: none;
  }
}
