
  .client-link.bottom-1rem.adt-order-pair-box {
    position: relative;
    margin: 24px 0;
    padding: 24px 24px 24px 72px;
    border-radius: 18px;
    border: 2px solid #f5b400;
    background: linear-gradient(135deg, #fff7d6 0%, #ffffff 55%, #fff1b8 100%);
    box-shadow: 0 12px 35px rgba(245, 180, 0, 0.28);
    font-size: 17px;
    line-height: 1.55;
    color: #26313a;
    overflow: hidden;
  }

  .client-link.bottom-1rem.adt-order-pair-box::before {
    content: "!";
    position: absolute;
    left: 24px;
    top: 24px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5b400;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 34px;
    text-align: center;
  }

  .client-link.bottom-1rem.adt-order-pair-box::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    border: 2px solid rgba(245, 180, 0, 0.45);
    animation: adtPulseBorder 1.8s infinite;
    pointer-events: none;
  }

  .adt-order-pair-title {
    display: block;
    margin-bottom: 6px;
    font-size: 21px;
    font-weight: 800;
    color: #111;
  }

  .adt-order-pair-text {
    display: block;
    max-width: 760px;
    margin-bottom: 16px;
  }

  .adt-order-pair-box a.adt-order-pair-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    background: #e53935;
    color: #fff !important;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    animation: adtButtonPulse 1.5s infinite;
  }

  .adt-order-pair-box a.adt-order-pair-button::after {
    content: "→";
    font-size: 18px;
  }

  .adt-order-pair-box a.adt-order-pair-button:hover {
    background: #c62828;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 26px rgba(229, 57, 53, 0.45);
  }

  @keyframes adtPulseBorder {
    0% {
      opacity: 0.7;
      transform: scale(1);
    }
    70% {
      opacity: 0;
      transform: scale(1.035);
    }
    100% {
      opacity: 0;
      transform: scale(1.035);
    }
  }

  @keyframes adtButtonPulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.04);
    }
  }

  @media (max-width: 767px) {
    .client-link.bottom-1rem.adt-order-pair-box {
      padding: 22px 18px 22px 60px;
      font-size: 15px;
    }

    .client-link.bottom-1rem.adt-order-pair-box::before {
      left: 18px;
      top: 22px;
      width: 30px;
      height: 30px;
      font-size: 20px;
      line-height: 30px;
    }

    .adt-order-pair-title {
      font-size: 18px;
    }

    .adt-order-pair-box a.adt-order-pair-button {
      width: 100%;
      padding: 14px 18px;
      font-size: 15px;
    }
  }
